Batting 1000
Nobody bats 1.000, or one thousand. Not in baseball and not in any aspect of life. You might be able...
2009-01-08
625 reads
Nobody bats 1.000, or one thousand. Not in baseball and not in any aspect of life. You might be able...
2009-01-08
625 reads
I've been meaning to do this for a year, finally caught up with Eric Johnson of Consortio Services to do...
2009-01-08
716 reads
Tomorrow Microsoft will make Windows 7 beta available for download. I’m a little skeptical but I think just about anyone...
2009-01-08
672 reads
We use the Analysis Services Deployment Wizard when moving our cubes from Dev to QA and then QA to Prod. ...
2009-01-07
318 reads
Yesterday I wrote about some goals for 2009 here at SQLServerCentral. It’s a list of stuff that I want to...
2009-01-07
945 reads
Yesterday I started discussing networking and the idea that it's time invested with no guarantee of a return on that...
2009-01-07
744 reads
I have a lot of blogs I subscribe to. Well over 500 at last count. And the truth of the...
2009-01-07
724 reads
I received word earlier today that I’ll be presenting at the upcoming SQL Saturday event in Tampa, Florida on January...
2009-01-07
975 reads
OK, today I see something useful about Twitter. I'm stuck in bed, my daughter sick, trying to work and listening...
2009-01-07
960 reads
I've been trying to comment on a few interesting blogs here today, but for some reason I can't. It seems...
2009-01-06
574 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
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