PASS Travel Plans, Halloween, Networking Dinner, SQL Dinner & Game Night
Normally I fly out Monday to spend the week at PASS. It’s good to get there early to adjust to...
2017-09-10
500 reads
Normally I fly out Monday to spend the week at PASS. It’s good to get there early to adjust to...
2017-09-10
500 reads
Equipment can matter for IT professionals. Read a few thoughts from Andy Warren.
2017-09-07
66 reads
Today we’re starting on our 11th SQLSaturday here in Orlando. Normally we rotate the leadership between oPASS and MagicPASS, but...
2017-06-05
495 reads
I read with interest the post from Bob Pusateri that discusses what seems to be the next iteration of the...
2017-04-17
425 reads
Posting this mostly in case I need it again. I needed a merge tool for Git, Kdiff is free and...
2017-04-12 (first published: 2017-03-23)
863 reads
Notes on items I found interesting in the financial statement, recommend you download and read the entire document.
Global Alliance Partner...
2017-04-10
420 reads
The Murder Accountability Project is worth a look. It’s a reminder that gathering good data is hard, but once you...
2017-04-06
493 reads
It’s not easy to keep up with tech, here’s an update I missed – you can add params to the connection...
2017-04-05
663 reads
I wrote Only as Good as Your Auditor for SQLServerCentral because its something I’ve explained to people over and over...
2017-04-04
636 reads
I wrote How to Become a SQL Server Database Administrator (email address required for download) a few years ago as a project...
2017-04-03
529 reads
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,...
Quite the title, so let me set the stage first. You have an Azure...
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