VMware vExpert 2015
VMware has announced the list of 2015 recipients of the vExpert award, and I am humbled and honored to have been...
2015-02-18
373 reads
VMware has announced the list of 2015 recipients of the vExpert award, and I am humbled and honored to have been...
2015-02-18
373 reads
The goal of the storage performance analysis is to identify the performance characteristics of a target storage device. To determine...
2015-02-10 (first published: 2015-02-03)
6,901 reads
I am pleased to announce that I have an upcoming preconference training session on Friday, February 27th, the Friday before...
2015-01-30
1,154 reads
Omaha’s next SQL Saturday event, #397, is now live and scheduled for May 23rd, 2015, at Mammel Hall on the...
2015-01-26
669 reads
The VMware Users Group VMUG just announced a partnership with VMware, called the EVALExperience, to offer VMware technology pre-production 365-day licenses...
2015-01-21
553 reads
VMware has recently announced an online event for February 2nd that you don’t want to miss! Whatever it is, it’s going...
2015-01-14
570 reads
Want to get out of the winter blues and into some warmer weather for some deep SQL Server training? Join...
2015-01-12
1,237 reads
Yesterday morning I opened my email and was very pleased to find that I have been nominated for the 2014 Tribal...
2014-12-17
393 reads
You should benchmark your storage immediately. If you are a database administrator, you should benchmark it yesterday. And today. And...
2014-12-15
1,270 reads
This month’s PASSHigh Availability and Disaster Recovery virtual chapter presentation is by Edwin Sarmiento ( b | t | l ) entitled “A Lap...
2014-12-08
748 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