Day four of Summit – Keynote 2 #sqlpass
The keynote started out with Bill Graziano taking to the stage in a kilt and declaring that the second day...
2011-10-13
1,110 reads
The keynote started out with Bill Graziano taking to the stage in a kilt and declaring that the second day...
2011-10-13
1,110 reads
Today was our first day to attend regular sessions. With over 189 sessions being offered over 3 days there are...
2011-10-13
697 reads
Last year we set out some very high goals. 1 million technical training hours, 250k members in the community, and...
2011-10-12
975 reads
The second day of the Summit was full of even more pre-con’s. Word on the street last night is that...
2011-10-12
945 reads
My first day in Seattle has ended. My flight arrived around 12:30 and I was in good company with John Lang and Julie Smith on the same flight. We rode the light rail...
2011-10-12
642 reads
My first day in Seattle has ended. My flight arrived around 12:30 and I was in good company with John...
2011-10-11
739 reads
Watching the twitter sphere it is apparent that many of the SQL Nation are in route to Seattle WA today....
2011-10-10
468 reads
Last year at the Summit I missed out on this really cool concept. Donate your unused items from your hotel....
2011-10-06
694 reads
I decided to start monitoring the amount of free space in my database files so that I can make sure...
2011-10-05
1,576 reads
Well it isn’t quite over for me just yet, I still have a flight home tomorrow and can’t wait to...
2011-10-02
473 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
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,...
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