PASS Summit 2012-Wednesday Keynote Part 2
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
822 reads
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
822 reads
I like reading and while I read more on an e-reader than I used to, I still prefer the printed...
2012-11-05
839 reads
I started this trip with a 4:30 am wake up on Sunday to be at the airport for the direct...
2012-11-05
831 reads
If you’re in Seattle for the PASS Summit and would like a chance to meet some new people in a...
2012-11-05
826 reads
I tend to take it for granted and I imagine most of you do as well, but not everyone is...
2012-11-01
813 reads
I’ve been living with my Mac Air for a few weeks now, thought I’d share some quick thoughts:
I miss the...
2012-10-24
811 reads
Congratulations to Wendy Pastrick, James Rowland-Jones, and Sri Sridharan on winning a two year term on the PASS Board of...
2012-10-17
805 reads
We just crossed the 100 mark for registrants for our Monday Night Networking Party and still room for more. If...
2012-10-12 (first published: 2012-10-09)
1,813 reads
My friend Richard Salogub is heading up this years Give Camp Orlando, an effort to link developers and IT professionals...
2012-10-08
771 reads
I was just answering an email and realized I’m behind on posting on a few topics, one of them the...
2012-10-08
927 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
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