PASS Summit 2013 Schedule
Each year, I like to compile my own shortcut, cheat sheet version of the PASS Summit schedule. I’m not talking...
2013-09-10
1,053 reads
Each year, I like to compile my own shortcut, cheat sheet version of the PASS Summit schedule. I’m not talking...
2013-09-10
1,053 reads
So I’m studying a lot these days, and I find myself evaluating and reconsidering the theories of “study” that I’ve...
2013-09-09
694 reads
I’m studying my butt off for the soon-to-be-deprecated Microsoft Certified Master cert’s lab – and the three unfinished prerequisite certs I’ve...
2013-09-05
709 reads
We just finished the webshow last night, when one of our chatroom fellows – Nic Cain – told us that the MCM...
2013-08-31
1,182 reads
Last weekend I gave my “Unraveling Tangled Code” talk at SQL Saturday Oklahoma, and they were kind enough to record...
2013-08-30
1,119 reads
Let’s hear a story. The story is true, but elements have been generalized and fictionalized for simplicity, and so’s not...
2013-08-23
606 reads
The other day I found myself in a discussion about media – print, broadcast, and social – and having to explain why...
2013-08-14
866 reads
It’s summer here in the northern hemisphere, and in Texas we’re getting 100F-plus weather pretty consistently. This brain-frying weather may...
2013-08-12
579 reads
The T-SQL TRY/CATCH structure (“new” in SQL 2005!) is, as the professionals say, da bomb. It’s also underused and under-understood,...
2013-06-20
2,409 reads
A good many companies still have servers chugging along on SQL Server 2000 (or even, as some of us noted...
2013-06-13
902 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