Networking – A Year Later
I was excited to attend the networking session last year at the PASS Summit. Andy Warren and I had talked...
2010-06-15
663 reads
I was excited to attend the networking session last year at the PASS Summit. Andy Warren and I had talked...
2010-06-15
663 reads
A short while ago someone complained that some of the headlines on SSC were deceiving in terms of what they...
2010-06-15
661 reads
Will computers become better at finding context in situations and environments? Steve Jones comments.
2010-06-14
88 reads
I had been hearing about Lil’ Buck and so when I finally caught up with Buck Woody (Blog | Twitter) at...
2010-06-14
805 reads
I gave the Modern Resume: Building Your Brand presentation last week at the SQL Saturday #22 - Pensacola event and had...
2010-06-14
657 reads
I got this flyer in the mail recently.
It was for a seminar by Edward Tufte, and it caught my eye...
2010-06-11
372 reads
I saw a post from Seth Phelabaum on SQLServerCentral reviewing his goals as of Q2. About 20 days premature, but...
2010-06-11
311 reads
I’ve done a good amount to raise my profile over the years. Not with that intention, but as I’ve tried...
2010-06-10
403 reads
I saw this link posted by Buck Woody (blog | Twitter) and I was a little stunned. This is a profile...
2010-06-10
463 reads
Steve Jones talks about the PASS Board of Directors election coming up this fall and hopes some of you will apply.
2010-06-10
63 reads
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
By HeyMo0sh
Working in DevOps long enough teaches you two universal truths: That’s exactly why I...
Hi all, I just started using VS Code to work with DB projects. I...
Comments posted to this topic are about the item Fun with JSON II
Comments posted to this topic are about the item Changing Data Types
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 t1.[key] AS row,
t2.*
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t1
CROSS APPLY OPENJSON(t1.value) t2; See possible answers