My Playbook For Putting On a SQLSaturday Part 3: Food
Feed Me Seymour!
Welcome to your number one cost. Every budget I’ve looked at so far food is the top expense...
2011-11-10
1,173 reads
Feed Me Seymour!
Welcome to your number one cost. Every budget I’ve looked at so far food is the top expense...
2011-11-10
1,173 reads
Finding Your Venue
Sounds simple right?
It can be one of the most difficult things to do for something the size of...
2011-11-09
1,228 reads
The Long Road
I am going to post this as a series covering, in detail, everything humanly possible about the logistics...
2011-11-08
1,283 reads
Meme Monday, What #SQLFamily means to me personally.
Tom LaRock Is kicking of November with this particular meme. I’m not sure exactly...
2011-11-08
844 reads
Be Part Of The Solution, Not The Problem
<disclaimer >
Now that BoD season is in full swing and I’m not running for...
2011-10-31
2,069 reads
Be Part Of The Solution, Not The Problem
<disclaimer >
Now that BoD season is in full swing and I’m not running for...
2011-10-20
1,452 reads
2011-10-14
Wow,
It’s the last day of the 2011 PASS Summit. I can’t wait to get some sleep on the plane tomorrow.
Wayne...
2011-10-14
782 reads
Bill Graziano opened the day with some very white knees as kilt day kicked off at the Summit this year!...
2011-10-14
842 reads
COMMUNITY!
It is a packed house again this year. If you were here on Tuesday night and you were a first...
2011-10-12
937 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