SQL Saturday Minneapolis Precon – Complete Primer to SQL Server Virtualization – Coming Soon!
This is just a quick reminder to encourage you to attend my next round of all-day precon training session at the...
2016-09-14
394 reads
This is just a quick reminder to encourage you to attend my next round of all-day precon training session at the...
2016-09-14
394 reads
SQL Server 2016 supports AFTER triggers! I could find no good example of how to do this with a project...
2016-09-12
743 reads
Bottlenecks in your testing tools, infrastructure, or methodology might just hurt your load test results, and the results can skew...
2016-09-16 (first published: 2016-09-12)
1,309 reads
I’m happy to announce that I’m speaking at this year’s IT/Dev Connections conference held at the ARIA Resort in Las Vegas...
2016-09-08
344 reads
I’m proud to be speaking at this year’s IT/Dev Connections conference in Las Vegas during the week of October 10th!...
2016-09-06
353 reads
I’m very excited to be presenting in the opening slot for this year’s 24 Hours of PASS – Summit Preview Edition...
2016-09-06
372 reads
On episode of one of our favorite podcasts – 10 on Tech from ActualTech Media – recently focused on a discussion with James...
2016-08-24
432 reads
I’m pleased to announce that I’m launching my next round of all-day precon training session at the upcoming SQL Saturday in Minnesota on...
2016-08-08
393 reads
This year’s involvement in VMware‘s VMworld conference is up on the content catalog! I am extremely proud to announce my participation...
2016-07-29
869 reads
I’m pleased to announce that I’m launching my next round of all-day precon training session at the upcoming SQL Saturday in Louisville on...
2016-07-18
412 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...
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
Comments posted to this topic are about the item Answering Questions On Dropped Columns
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