2009 PASS Summit Presentation Results
I opened my inbox Wednesday morning to find the evaluation results for my presentation on Transactional Replication at the 2009...
2010-01-07
416 reads
I opened my inbox Wednesday morning to find the evaluation results for my presentation on Transactional Replication at the 2009...
2010-01-07
416 reads
As is the traditional thing to do at the beginning of a new year I'm making goals for what I'd...
2010-01-06
708 reads
I took some time off in December and I'm finally getting around to catching up on RSS feeds. Turns out...
2009-12-31
1,515 reads
I'll close out 2009 with an update on the goals I set at the beginning of this year and things...
2009-12-31
1,395 reads
Let's face it, when it comes to computers there's a 100% certainty that something is going to break eventually. Maybe...
2009-12-03
583 reads
Remember that scene from Office Space where the Bobs ask, "What would you say you do here?" I've been a...
2009-12-02
538 reads
Anybody who has talked with me about replication or heard me present about it knows that I recommend using a...
2009-11-23
636 reads
Last week I wrote a day by day recount of my PASS Summit experience (Monday, Tuesday, Wednesday, Thursday, Friday). Since...
2009-11-20
714 reads
Since this was my time visiting Seattle I opted to stay an extra day and take in the sights and...
2009-11-13
592 reads
Thursday started off with a meeting of the SQL Saturday minds over breakfast at Top Pot Donuts a few blocks...
2009-11-12
878 reads
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...
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
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