Book Review: Where Have All The Leaders Gone
It had been a long while since I listened to an audio book, found it while browsing at the library....
2010-04-02
374 reads
It had been a long while since I listened to an audio book, found it while browsing at the library....
2010-04-02
374 reads
Here were the goals I posted for 2010 on the last day of December:
Continue managing the forums, but at a...
2010-04-02
498 reads
April will be a busy month for me as I will be speaking seven different times, on seven different topics,...
2010-04-02
446 reads
When you ask a question on the forums, you'll often get responses that certain ways of doing things are inefficient...
2010-04-02
446 reads
This is one thing outside the SQL World, but it has very strong place in every aspects, it is one...
2010-04-02
612 reads
The 2008 trending topic everyone was talking about was the Web 2.0. On October 23 that same year, Amazon EC2 dropped the Beta label and the story accelerated: Less...
2010-04-02
10 reads
The 2008 trending topic everyone was talking about was the Web 2.0. On October 23 that same year,...
2010-04-02
14 reads
Like many of you I’ve heard the developer community going on about Rails for quite a while now. It wasn’t...
2010-04-02
1,462 reads
The March SQL Aloha contest had a total of 25 entries, and all of them were great responses to this...
2010-04-02
421 reads
Just as an experiment, I am going to post a different DMV query every day for the next 30 days. ...
2010-04-01
886 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