Starting Conversations - Part 4
As I've mentioned in earlier posts (Part 1, Part 2, Part 3) I've engaged speaking and networking Don Gabor to...
2009-05-05
407 reads
As I've mentioned in earlier posts (Part 1, Part 2, Part 3) I've engaged speaking and networking Don Gabor to...
2009-05-05
407 reads
Shortly after the Zune debuted, I purchased one. And I've been happy with it. It's done everything I expected out...
2009-05-04
859 reads
I've been tech editing a book about SQL Server encryption and this series of blog posts looks at some interesting...
2009-05-04
9,429 reads
My friend Grant Fritchey recently posted in response to a quiz and at the end of that mentioned that he'd...
2009-05-04
577 reads
Just had a call with Ken Starnes last week and all is proceeding for a great two track event in...
2009-05-04
296 reads
It's too quiet in the house.
So I headed out to get some lunch and work at Paradise Bakery. They have...
2009-05-04
395 reads
This is part one of a series on writing a technical article. The advice might apply to non-technical articles, but...
2009-05-04
1,680 reads
I drove up on Friday night for the speaker dinner, getting there after a busy day trying to catch up...
2009-05-03
412 reads
I was engaged in a conversation recently where the topic under discussion was "What defines an "A" class player?" Others...
2009-05-02
375 reads
I have written two new articles and they are going to be published, not on SSC but on SSWUG. I...
2009-05-02
1,284 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 everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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