My Kit For The Summit
As an old timer at the Sumit I have gone through several iterations of what I carry in my bag.
Luggage
I...
2011-10-05
735 reads
As an old timer at the Sumit I have gone through several iterations of what I carry in my bag.
Luggage
I...
2011-10-05
735 reads
Day Of Days
I just don’t know what to say, Saturday was just plain awesome. Easily one of the best days...
2011-10-05
818 reads
OMG! SQLSATURDAY #97 IS HERE!
I am really excited about SQLSaturday #97! In just a few short hours we will be...
2011-10-01
745 reads
Hard Choices
First, thank you for submitting to speak at SQLSaturday #97 in Austin, TX. Myself, Richard Heim and Mike Byrd...
2011-09-08
795 reads
Wallflowers Bloom
My friend Tim Mitchell wrote an awesome personal account a while back and shared it again recently. It’s a...
2011-09-02
613 reads
We’re Gonna Need A Bigger Boat
Not to sound too obvious, I test IO systems. That means from time to time...
2011-08-25
2,180 reads
Reposted from :http://sqlaj.wordpress.com/2011/08/19/why-you-should-attend-sql-saturday-97/
By AJ Mendo
Free Training
Part of the mission statement of SQL Saturday (read the full statement here) is to...
2011-08-22
919 reads
Hi my name is Wes, and I am a volunteer
I am not unique. There are others like me, who give...
2011-08-10
1,335 reads
Something Is Missing…
Some of you know I have a deep passion for the SQL Server community. I’ve always been extremely...
2011-08-03
836 reads
There are several different aspects of indexes that can be monitored via DMV’s. One the neatest things is just how...
2011-07-12
2,466 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