Minutes of the September 2010 PASS Board Meeting Posted
Please take a few minutes to review the September 2010 minutes (login required). We just had our October meeting on...
2010-10-20
662 reads
Please take a few minutes to review the September 2010 minutes (login required). We just had our October meeting on...
2010-10-20
662 reads
Over the past few months I’ve been thinking that we don’t do enough to celebrate the people and the effort...
2010-10-20
596 reads
We’ve made great progress with SQLSaturday this year; reaching new cities, a successful handoff to PASS, and a lot of...
2010-10-20
495 reads
My friend Don Gabor is back at the Summit this year presenting a two hour seminar on Networking to Build...
2010-10-19
619 reads
Below is a screen shot of our current speaker/session evaluation form. Simple and to the point, I think it gives...
2010-10-19
571 reads
We headed into the SQLSaturday #49 weekend with a $99 seminar on Database Design by Louis Davidson. We ended up...
2010-10-18
658 reads
First, a reminder that our fourth annual SQLSaturday is this Saturday, October 16, 2010, at Seminole State College in Lake...
2010-10-14
596 reads
The almost final list just posted by Mike Walsh, 50+ MVP’s will each host a lunch table at the PASS...
2010-10-13
540 reads
Saw this today, a survey posted to the SQL Protocols blog by Principal Group Program Manager Raghu Ram. I took...
2010-10-13
531 reads
NPR Baseball Driveway Moments ($15 @ Amazon) is an audio book I got from the local library to listen to on...
2010-10-12
389 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