SQL PASS Summit just one week away!
Happy Halloween everyone!
I’m stoked that the SQL PASS Summit is just one week from now! You are already registered, have...
2012-10-31
1,246 reads
Happy Halloween everyone!
I’m stoked that the SQL PASS Summit is just one week from now! You are already registered, have...
2012-10-31
1,246 reads
As a SQL Server professional, I consider it an absolute must to attend the SQL PASS Summit each year. Last...
2012-10-25
950 reads
Michael Webster from longwhiteclouds.com reported that VMware Global Support Services told him a few days ago that the Extended Oracle...
2012-10-24
680 reads
This week I completed a six-part blog series (more like five plus one) on the path to virtualizing your business-critical...
2012-10-29 (first published: 2012-10-24)
2,361 reads
Just before SQL PASS Summit in November, House of Brick and I will be holding a free boot camp (update – link removed after event was...
2012-10-18
868 reads
Recently VMware announced at VMworld Europe that it will soon release a product called vCenter Multi Hypervisor Manager, supposedly in...
2012-10-18
620 reads
This month has been wild. I’ve been out of town quite a bit for work, and started the month with...
2012-10-15
813 reads
I will be speaking at SQL Saturday #145 in Nashville, TN to speak on one of my favorite topics – Virtualizing...
2012-10-10
759 reads
The Omaha SQL Server Users Group meeting for October is coming up this Tuesday, and the coordinators have prepared a...
2012-10-08
444 reads
Today I presented two sessions at SQL Saturday Lincoln (almost in my backyard!) – Virtualizing Business-Critical SQL Servers and Database Health...
2012-10-07
447 reads
By HeyMo0sh
Over time, I’ve realised that one of the hardest parts of cloud management isn’t...
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
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