PASS
I arrived home this morning after another PASS Summit. This is my 6th in a row. Each year I have...
2008-11-22
433 reads
I arrived home this morning after another PASS Summit. This is my 6th in a row. Each year I have...
2008-11-22
433 reads
I broke down and bought my first Vista machine last Sunday, an HP Pavilion from a local box store. From...
2008-11-21
599 reads
2008-11-20
731 reads
Shortly after I gave my presentation Trigger Happy Database Security down in Jacksonville for SQL Saturday #3, I received an...
2008-11-20
857 reads
I've been hanging around the SQL PASS Summit this week and came to a realization, I do know something...
I don't...
2008-11-20
443 reads
Went to the intro and keynote yesterday, even though I know better. They weren't bad, they just weren't great. I...
2008-11-20
659 reads
I couldn't muster the enthusiasm for a keynote today, so I went for a walk, stopping first for a doughnut...
2008-11-20
734 reads
It’s been a great week at PASS thus far and many others have written on their experiences so I’ll do...
2008-11-20
577 reads
The morning keynote opening was good. We had video of the conference playing here and there, the election candidate positions...
2008-11-20
1,069 reads
He's the manager for BI, the General Manager, and he's here to talk about the challenge and promise of Pervasive...
2008-11-20
1,189 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
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