#SQLRelay 2013 R2 – Week 2
If you haven’t heard of SQL Relay and you live in the UK then shame on you. SQL Relay is...
2013-11-21
974 reads
If you haven’t heard of SQL Relay and you live in the UK then shame on you. SQL Relay is...
2013-11-21
974 reads
I feel really bad that I’ve not been able to blog recently. My draft area is littered with half written...
2013-11-19
729 reads
I’ve been a bit lapse in posting what I am up to recently. For example, I completely missed blogging about...
2013-11-19
713 reads
A lot has been said about what each candidate would like to do and their track record of delivering in...
2013-09-26
1,089 reads
As you may have seen in my post yesterday “PASS Board of Directors Election: Candidates announced” I am running for...
2013-09-24
705 reads
As you may have seen in my post yesterday “PASS Board of Directors Election: Candidates announced” I am running for...
2013-09-24
737 reads
Earlier this morning the official list of candidates running for the PASS Board of Directors was announced. I’m both delighted...
2013-09-23
570 reads
For those of you who may have been living under a rock for the last few years every year PASS...
2013-09-13
482 reads
The second incarnation of 2013 “SQL Relay” is bigger and better than ever. We have taken on board all of...
2013-09-12
670 reads
Snazzy title eh, I bet you can’t guess what this post is about. That’s right, it’s all about Monty Python!
A...
2013-09-11
772 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