Spring Training, Why Don't We Have Spring Training, and Shock The Monkey
I try to go to a spring training game once or twice a year and it serves as a useful...
2009-03-17
714 reads
I try to go to a spring training game once or twice a year and it serves as a useful...
2009-03-17
714 reads
This SQL School video will introduce you to the INTERSECT command in T-SQL. MVP Andy Warren explains how this command allows you to find matching rows in a join and a UNION.
2009-03-17
4,853 reads
I received a review copy of Murach's SQL Server 2008 For Developers a couple months back and just finished up looking through it. In general I've always liked the style of the Murach books; short lessons that flow about as logically as you can do it when it often seems like you need to know it all to get anything done!
2009-03-17
1,782 reads
My friend Michael Lato sent me an email asking if I would take a look at his newest venture called...
2009-03-16
510 reads
We just had our bi-monthly SQL group meeting (www.opass.org) with Kendal Van Dyke presenting The Truth About Disk Performance & Configuration,...
2009-03-16
566 reads
Had a note from Ken Starnes in Portland, the date for SQLSaturday #12 has changed to June 6th (same date...
2009-03-16
590 reads
Last week I was in Seattle, so I decided to stay an extra day and drive up to Vancouver to...
2009-03-12
637 reads
MVP Andy Warren continues his series of videos on auditing with a look at removing old data. In this video, learn how to develop an easy system to keep a rolling history, removing anything older than a set number of days.
2009-03-12
1,765 reads
It's funny how life often gives us the buy or fix decision on some many things, and the hard part...
2009-03-11
582 reads
Learn the basics of how to audit changes on your SQL Server with MVP Andy Warren.
2009-03-10
5,675 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,...
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