The Khan Academy
It’s completely unrelated to work, though there is a computer science section.
I can’t take credit for this, that goes to...
2011-10-07
2,220 reads
It’s completely unrelated to work, though there is a computer science section.
I can’t take credit for this, that goes to...
2011-10-07
2,220 reads
There’s a bunch of stuff scheduled for the PASS Summit next week. You can see some of the events on...
2011-10-06
1,391 reads
Steve Jones reminds you to network anytime you're at and event, and especially a large conference like the PASS Summit.
2011-10-06
51 reads
It sucks getting older. There are any number of reminders of that fact on a regular basis as I move...
2011-10-06
895 reads
Life is awesome, and Steve Jones things everyone can find something awesome in their jobs.
2011-10-05
448 reads
This post is part of a series based on my presentation The Top Ten Skills You Need for SQL Server....
2011-10-04
1,560 reads
Today Steve Jones talks about learning those advanced features that you don't get the chance to use in your daily work.
2011-10-04
330 reads
When you create a SQL Server login (with SQL authentication), you have the option of enforcing password policies from Windows...
2011-10-03
6,211 reads
SQL Bits was great
It’s been two years or more that I’ve been invited to SQL Bits. Not by email, but...
2011-10-03
1,267 reads
A series training in the UK is happening this week. Read more to find out any of the 16 user group meetings can fit into your schedule.
2011-10-03
2,008 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...
Hi all, I just started using VS Code to work with DB projects. 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
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