Music City Data
I’ve never spoken in Tennessee. I’ve wanted to visit, but the I’ve only managed to drive through a part of...
2018-05-17
331 reads
I’ve never spoken in Tennessee. I’ve wanted to visit, but the I’ve only managed to drive through a part of...
2018-05-17
331 reads
Today is a big day! The OpenSSH client version 7.6p1 is now part of the Windows 10 operating system! Microsoft released Windows 10 Update 1803 and included in that...
2018-05-17
5 reads
Today is a big day! The OpenSSH client version 7.6p1 is now part of the Windows 10 operating system! Microsoft...
2018-05-17
1,184 reads
There was an announcement on the Visual Studio Code blog about the public preview of Live Share. This enables you...
2018-05-17 (first published: 2018-05-08)
2,073 reads
MySQL user format it as ‘User_name’@’hostname’ To create the user account use following syntax: CREATE USER ‘User_name’@’Host_name’ IDENTIFIED BY <Pwd>;...
2018-05-16
218 reads
2018-05-16
860 reads
After blogging about SQL Server for just over a year, at some in the last month I went over 100,000...
2018-05-16
470 reads
The April 2018 update for Windows brought a few cool things but the best one (imho) is that now we...
2018-05-16 (first published: 2018-05-07)
1,728 reads
Policy Based Management has been in SQL Server since 2008 and allows you to define policies that can report issues...
2018-05-16
89 reads
Policy Based Management has been in SQL Server since 2008 and allows you to define policies that can report issues...
2018-05-16
93 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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