Join Me at Modern Apps Live! Las Vegas
If you are familiar at all with Visual Studio Live! then you should check out this new conference. At the...
2013-02-05
594 reads
If you are familiar at all with Visual Studio Live! then you should check out this new conference. At the...
2013-02-05
594 reads
A little over six months ago, I wrote an article on Magenic.com about Excel 2013’s Impact for BI Users. This...
2013-02-04
1,408 reads
If you have not signed up for the 24 Hours of PASS-Business Analytics you should be. This is a great...
2013-01-29
1,367 reads
A tribute is an expression of gratitude or praise. Last year I started a series about individuals who have impacted...
2013-01-29
1,623 reads
Each year the Minnesota SQL Server User Group elects new board members and resets its leadership team. I have been...
2012-12-12
773 reads
Wow, what a week. Once again, PASS put on a great event that provided much in the way of events...
2012-11-13
860 reads
Reblogged from Data on Wheels - Steve Hughes: I recently completed a series of blog posts on www.lessthandot.com on T-SQL Window...
2012-11-12
616 reads
IT’S MONDAY! You ready to enjoy the fun and to learn a bunch? I know I am. Besides my schedule...
2012-11-05
672 reads
I assume at this point some of you are already in Seattle and even getting ready to attend Preconference Sessions....
2012-11-04
638 reads
Three days to go. I need to get my schedule sorted out, how about you. What influences your schedule? Since...
2012-11-03
554 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