SSWUG Spring Conference Speaker Ratings
This spring I presented a few sessions at the spring SSWUG virtual conference – DBTechCon. Now that the event is over,...
2011-07-21
1,030 reads
This spring I presented a few sessions at the spring SSWUG virtual conference – DBTechCon. Now that the event is over,...
2011-07-21
1,030 reads
Seriously, what’s going on in Minnesota? Our government is shut down and… we are hosting a SQL Saturday on a...
2011-07-20
663 reads
No posts in a couple weeks, except the Re-Blogs. Guess the running around and getting married I did last week...
2011-07-20
468 reads
As I mentioned in the introductory post, I’m summarizing posts from previous years in the the past week. Some posts...
2011-07-15
751 reads
As I mentioned in the introductory post, I’m summarizing posts from previous years in the the past week. Some posts...
2011-07-08
460 reads
It’s a new month, and time to check out your SQL Servers to make sure everything is configured and working...
2011-07-05
1,034 reads
Thanks Microsoft for awarding me the MVP for SQL Server for the third year in a row. It’s a great...
2011-07-04
599 reads
As I mentioned in the introductory post, I’m summarizing posts from previous years in the the past week. Some posts...
2011-07-01
516 reads
Study Group
For the past few months, I’ve been openly working towards the SQL Server MCM. I failed a couple times...
2011-06-30
1,794 reads
Want to take a few minutes out of your day on to learn a bit more about indexes? On Thursday,...
2011-06-28
884 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