Summit 2013 – Part the First
While not technically the first day of Summit since the official start is yet to come, here are my thoughts...
2013-10-16
654 reads
While not technically the first day of Summit since the official start is yet to come, here are my thoughts...
2013-10-16
654 reads
While not technically the first day of Summit since the official start is yet to come, here are my thoughts on Sunday and Monday of PASS Summit 2013. For...
2013-10-16
1 reads
The SQL Crazy train continues chugging along this month. The next two whistle stops are back to back in the Carolinas. The first stop is coming up in just...
2013-10-11
3 reads
The SQL Crazy train continues chugging along this month. The next two whistle stops are back to back in the...
2013-10-11
660 reads
Last month I blogged about the SQL Crazy train making a whistle stop in Providence Rhode Island. A couple of...
2013-10-10
657 reads
Last month I blogged about the SQL Crazy train making a whistle stop in Providence Rhode Island. A couple of weeks prior to that, you may have read this...
2013-10-10
3 reads
This month we probably have the easiest topic I have ever seen for a TSQL Tuesday blog party. That isn’t a slight, but rather is something of a good...
2013-10-08
5 reads
This month we probably have the easiest topic I have ever seen for a TSQL Tuesday blog party. That isn’t...
2013-10-08
937 reads
I have had the distinct pleasure of being asked to review a book by RedGate. The book is by a...
2013-10-07
1,653 reads
I have had the distinct pleasure of being asked to review a book by RedGate. The book is by a friend and respected community member Gail Shaw (blog |...
2013-10-07
16 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