Day 3 – Reviewing Peers
This is the third installment in the 12 day series for SQL tidbits during this holiday season. Previous articles in this mini-series on quick tidbits: SQL Sat LV announcement...
2013-12-27
3 reads
This is the third installment in the 12 day series for SQL tidbits during this holiday season. Previous articles in this mini-series on quick tidbits: SQL Sat LV announcement...
2013-12-27
3 reads
This is the second installment in the 12 day series for SQL tidbits during this holiday season. Previous articles in this mini-series on quick tidbits: SQL Sat LV announcement...
2013-12-26
3 reads
This is the second installment in the 12 day series for SQL tidbits during this holiday season.
Previous articles in this...
2013-12-26
622 reads
Last year I did a mini-series themed around the 12 Days of Christmas. I am going to do a similar...
2013-12-25
586 reads
Last year I did a mini-series themed around the 12 Days of Christmas. I am going to do a similar series this year. Over the next 12 days, I...
2013-12-25
5 reads
This past weekend I had the opportunity to go visit Washington DC. It was the first time I got to stay in the Nation’s capitol for more than just...
2013-12-11
3 reads
This past weekend I had the opportunity to go visit Washington DC. It was the first time I got to...
2013-12-11
826 reads
Tis the season once again. We have SQL gifts a plenty for any and all who wish to partake.
This month,...
2013-12-10
653 reads
Tis the season once again. We have SQL gifts a plenty for any and all who wish to partake. This month, we have Stacia Misner (twitter) that will be...
2013-12-10
6 reads
This post is part of the SQL Community Project started by John Sansom called #DBAJumpStart. “If you could give a DBA just one piece of advice, what would it...
2013-12-10
3 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