And then there was one
Windows 2008 RTM'd this week, which means that in a few weeks, at the February Launch event, there will be...
2008-02-06
775 reads
Windows 2008 RTM'd this week, which means that in a few weeks, at the February Launch event, there will be...
2008-02-06
775 reads
Had a friend forward this link to me about Chipotle and it's worth reading if you either A, like Chipotle/Mexican...
2008-02-06
433 reads
Introducing Linq is now available as a free download and along with chapters from Introducing ASP.Net Ajax and Introducing Silverlight....
2008-02-05
514 reads
The Midlands PASS Chapter is pleased to announce our own Paul Shearer and Bill Stevenson as our speakers for our...
2008-02-05
626 reads
I never did complete my MCDBA. As I was preparing to, I transitioned to my systems architect role, meaning I...
2008-02-05
3,190 reads
James Luetkehoelter has announced his book on SQL Server Disaster Recovery is complete. It is published by aPress and due...
2008-02-04
900 reads
I attended the South Florida Code Camp this past Saturday and it turned out to be quite an event. More...
2008-02-04
315 reads
There's a lot of buzz in the development community about LINQ in general, and for those that do data access...
2008-02-04
458 reads
This is a small surprise, mainly because it looked like only Visual Studio 2008 was actually going to make the...
2008-02-04
609 reads
In case you haven't seen this elsewhere, if you want Microsoft to release SP3 for SQL Server 2005. It's time...
2008-02-03
937 reads
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,...
Quite the title, so let me set the stage first. You have an Azure...
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