SQL Server 2012 Express RC
The new version of the lovely SQL Server edition, Express Edition!
Take a look the new link for the download and...
2012-01-31
3,218 reads
The new version of the lovely SQL Server edition, Express Edition!
Take a look the new link for the download and...
2012-01-31
3,218 reads
Reblogged from betim drenica's blog:
There is plenty of time I am developing applications for Windows Phone and… tools are great...
2012-01-25
1,367 reads
Reblogged from betim drenica's blog:
There is plenty of time I am developing applications for Windows Phone and…
tools are great (aka...
2012-01-25
1,196 reads
Many of you DBAs DB Devs and BI Devs in these days can have some changes from one SQL Server...
2011-12-23
1,443 reads
Many of you DBAs DB Devs and BI Devs in these days can have some changes from one SQL Server...
2011-12-22
1,243 reads
Today, I’m so excited to announce that we had the first meeting of our Users Group – Albanian SQL Server Users...
2011-12-17
1,321 reads
Today, I’m so excited to announce that we had the first meeting of our Users Group – Albanian SQL Server Users...
2011-12-17
920 reads
I would like to write about the tech events in my country and our brother-neighbor Albania, that everyday we are...
2011-11-27
941 reads
For all of you, that you have missed any session from the last 24 HOPass - you can check here
24 Session...
2011-10-01
1,156 reads
Yes, 24 Hours of PASS will start soon two days in row, 7-8 September 2011! Just for info for those...
2011-09-06
1,083 reads
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers