An Artist I’m Not!
One of the gifts my Mom gave my children was a ‘Painting Rocks’ kit. Great marketing, six medium sized rocks,...
2011-01-07
556 reads
One of the gifts my Mom gave my children was a ‘Painting Rocks’ kit. Great marketing, six medium sized rocks,...
2011-01-07
556 reads
Last week I wrote about my goals for last year and some frustration at having to make some trade offs...
2011-01-06
572 reads
I can’t remember where I heard this recently, but it’s been stuck in my head as one of those bits...
2011-01-05
617 reads
The schedule is posted for SQLSaturday #62 coming to Tampa on January 15, 2011. I don’t have a presentation on...
2011-01-04
557 reads
I’m writing this the day before Xmas, trying to finish up a bunch of odd tasks before the holiday weekend...
2010-12-30
1,448 reads
Bury My Heart at Conference Room B: The Unbeatable Impact of Truly Committed Managers by Stan Slap ($15 @ Amazon) is...
2010-12-29
734 reads
My friend Malathi (Mala) Mahadevan has chaired the Louisville PASS Chapter for the past couple years, and will be heading...
2010-12-27
977 reads
We’ve updated the original flyer to the new and improved model that has the prices. The image below is a...
2010-12-23
717 reads
This time the plan was to go to Arby’s because it was close and my friend Rob had coupons for...
2010-12-23
557 reads
I read a lot, and often marvel at the effort that goes into writing them, and I think I get...
2010-12-22
615 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 Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
Looking for a creative and experienced mobile game development company that brings your game...
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