SQL PASS Virtualization VC Presentation Wrapup
Everyone, thank you for attending the SQL PASS Virtualization Virtual Chapter presentation entitled “SQL Server High Availability Options After Virtualization”...
2013-09-11
682 reads
Everyone, thank you for attending the SQL PASS Virtualization Virtual Chapter presentation entitled “SQL Server High Availability Options After Virtualization”...
2013-09-11
682 reads
Next Wednesday I will be delivering a session for the SQL PASS Virtualization virtual chapter entitled “SQL Server High Availability...
2013-09-06
527 reads
If you live life in the manner that I do, life is all about change and self-improvement. To me, life...
2013-09-03
786 reads
VMworld 2013 is this week in San Francisco, and some exciting details about the next version of the vSphere suite,...
2013-08-28
561 reads
Today I had the pleasure of speaking at the SQL Saturday #235 in New York City. Talk about an absolutely...
2013-08-17
703 reads
Today I spoke at the second St. Louis SQL Saturday - SQL Saturday #236 in St. Louis. This year it was...
2013-08-03
541 reads
Have you ever wanted to know how fast one of your core SQL Servers are running, or ever wanted to...
2013-07-29
1,473 reads
This year’s SQL Saturday #222 in Sacramento was a blast. This event was certainly the high point of my summer,...
2013-07-28
778 reads
SQL Saturday #222 in Sacramento, CA, is coming fast! This Saturday, July 27, I will be presenting a little pre-show...
2013-07-24
670 reads
Huge sandwich from recent trip to downtown Chicago
First, I want to acknowledge that I’ve been pretty quiet on here lately....
2013-07-07
725 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