Ask the Expert Panel: NJ Special Event
Ever wanted to know all there is to know about SQL Server, and afraid to ask? Have questions about how...
2013-04-04
1,205 reads
Ever wanted to know all there is to know about SQL Server, and afraid to ask? Have questions about how...
2013-04-04
1,205 reads
Pragmatically
speaking, there’s no way you can learn all there is to know about Microsoft’s
native ETL tool, SQL Server Integration Services...
2013-04-03
2,108 reads
Well, they're baack in the City!Coming this Thursday April 4, 2013 to the Big Apple, hosted by the NYC
Metro SQL...
2013-04-03
940 reads
So much SQL, and so little Saturdays. SQLSaturday is truly a world-class event
happening all over the globe. Just this
past Saturday,...
2013-02-04
1,246 reads
I often get hung up in the whirlwind of life,
and one of the things that seems to slip my schedule,...
2013-01-08
1,835 reads
Season's Greetings and Merry Christmas! In the spirit of the holiday, I am rerunning my original parody on "Twas the...
2012-12-24
1,015 reads
This Saturday, major event that will shake the halls of
power gets under way for an all-day non-stop super event. Bringing...
2012-12-06
1,328 reads
Thursday, November 29, 2012, brings us the November
meeting of the NY SQL
Server User Group, with BI expert, SQL MVP and...
2012-11-28
1,820 reads
Today is Tuesday, and its time for another edition of TSQL Tuesday #36, as we continue the eternal blog party...
2012-11-13
1,502 reads
SQLPass Summit 2012, the
world's largest and most intensive technical training conference for Microsoft SQL
Server and BI professionals is in full...
2012-11-07
1,374 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