2013 in Review
Steve Jones looks back at 2013, starting with his predictions on Jan 1 and looking at how data and SQL Server impacted our community.
2013-12-31
111 reads
Steve Jones looks back at 2013, starting with his predictions on Jan 1 and looking at how data and SQL Server impacted our community.
2013-12-31
111 reads
I announced in the Christmas editorial that I was discontinuing the video podcasts. Needless to say I heard a complaint...
2013-12-31
1,411 reads
2013-12-31
2,307 reads
Google is trying to figure out who might quit the company, using their own custom application. Steve Jones thinks this is a great idea and wishes more companies would do it.
2013-12-30 (first published: 2009-06-10)
545 reads
This week Steve Jones looks at a few tools that can help your productivity and links to a few more.
2013-12-30
365 reads
It's the last Friday of 2013 and Steve Jones asks you to look back at the year. What stands out in your mind that relates to SQL Server.
2013-12-27
114 reads
I’ve written a bit about phones recently as I’ve experienced the switch back to iOS from Android. There are a...
2013-12-27
850 reads
2013-12-27
1,550 reads
Steve Jones doesn't think that it matters which platform you choose. It's more about the people you have.
2013-12-26
150 reads
2013-12-25
89 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