I'm Back!
I've been gone... wow. Since March 31st of this year?! Let's fix that.
So what has been holding me back?
Kids? I...
2016-09-23
372 reads
I've been gone... wow. Since March 31st of this year?! Let's fix that.
So what has been holding me back?
Kids? I...
2016-09-23
372 reads
Warning: This is a really short post.
Today March 31st, BrentOzar.com is giving away their videos! Well, not giving away... but...
2016-03-31
757 reads
We're proud to bring back the OKC SQL Saturday for the 5th year in a row! We have 3 precons...
2015-03-09
759 reads
I've been gone for a bit, forgive the long delay. Who would have thought the hatred for a cascading delete...
2015-03-03
1,090 reads
This is just a short update. I will be speaking at SQL Saturday Kansas City! I really hope to see...
2014-09-08
586 reads
SirSQL made a rather stirring post recently. He talked about a speaker buddy system to help out new speakers in...
2014-07-25 (first published: 2014-07-21)
7,998 reads
My very first IT job was a bit daunting for me. I really wanted to do my best but I...
2014-07-07
543 reads
Personal Thoughts
Just to be clear, I don't expect everyone to have my same thoughts. I personally fully support SQLServerCentral and...
2014-06-23
482 reads
I've been accepted for SQL Saturday Baton Rouge!
Yes, I am a little excited. I've wanted to become a speaker for...
2014-06-16
514 reads
I think I'd like to do a small short series on documentation. I personally love documentation. I honestly think most...
2014-06-09
738 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
Looking for a creative and experienced mobile game development company that brings your game...
hi everyone I am not sure how to write the query that will produce...
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 *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers