Registration Open for SQLRally 2012 in Dallas
On my list of things to get done this week is register for SQLRally 2012 in Dallas. It’s a quick...
2011-12-05
500 reads
On my list of things to get done this week is register for SQLRally 2012 in Dallas. It’s a quick...
2011-12-05
500 reads
My friend Steve Jones posted Shutting Down for a Week and in that he talked about doing too much, trying...
2011-12-02
756 reads
It’s been a slow few weeks since my last update. This week I did a call with Karla and Wes...
2011-12-01
431 reads
Today the slate of candidates for the 2012-2013 term was announced;
Adam Jorgensen, Denise McInerney, Geoff Hiten, Kendal Van Dyke,...
2011-12-01
640 reads
There is nothing like having two children to remind you how strange, funny, and complicated language can be. Try answering...
2011-11-30
1,598 reads
Just saw the official announcement MS TechEd will be in Orlando June 11-14, 2012, at the Orange County Convention Center....
2011-11-30
1,559 reads
I was astounded to see this blog at #4 on the list from the recent SQL Server Magazine Community Choice...
2011-11-29
711 reads
2011-11-28
761 reads
Today we have a guest editorial from Andy Warren that looks at stress and how it impacts your job. He offers a few ways that you might better deal with it as well.
2011-11-28
215 reads
Today we have a guest editorial from Andy Warren that looks at the relationships you have with your co-workers.
2011-11-23
464 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