VMworld EMEA SQL Server Sessions
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
381 reads
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
381 reads
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
150 reads
Just a reminder – our SQL Servers sessions for this year’s VMworld 2017 conference in Las Vegas are starting to fill...
2017-08-23
437 reads
Just a reminder – our SQL Servers sessions for this year’s VMworld 2017 conference in Las Vegas are starting to fill...
2017-08-23
131 reads
System administrators of the world, if a VM experiences a problem that takes down business-critical application, your job is to...
2017-08-21
300 reads
System administrators of the world, if a VM experiences a problem that takes down business-critical application, your job is to...
2017-08-21
117 reads
My company, Heraflux Technologies, is proud to announce a new ebook as part of our joint partnership with Pure Storage!...
2017-08-21
236 reads
One of the challenges with any SQL Server business continuity strategy is backing up your databases and logs on a...
2017-08-08
564 reads
In the last blog post, we added additional drives to the SQL Server machine so that we can scale out...
2017-08-16 (first published: 2017-07-27)
1,450 reads
One of the biggest differences with managing SQL Server Linux is with drive presentation. With Windows, we’d all scream if...
2017-08-09 (first published: 2017-07-24)
1,649 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