SQLSaturday#235 NYC - The Schedule You All Have Been Waiting For!
Late last night in the
Halls of Congress, a grand gathering of planners took place to form that
which we...
2013-07-19 (first published: 2013-07-18)
1,707 reads
Late last night in the
Halls of Congress, a grand gathering of planners took place to form that
which we...
2013-07-19 (first published: 2013-07-18)
1,707 reads
Just a quick word on some local events coming your way in the New Jersey area!
TOMORROW - The NJSQL user...
2013-07-15
961 reads
So, it’s Tuesday and its that time again for T-SQL Tuesday. We’re at the 44th entry which means it’s been...
2013-07-09
1,833 reads
Hey, all!
Today, going on all day, is the Summer Performance Palooza 2013, hosted by the PASS Performance Virtual Chapter. It is...
2013-06-27
1,715 reads
This month, Thursday, June 27, 2013, the NYC SQL User Group be doing something a little different. Instead of a technical presentation,...
2013-06-25
936 reads
SQLSaturday 200 is already looking further away in the rear view mirror, but it was a great event!
Joey D'Antoni, Sebastian...
2013-06-05
960 reads
With less
than two weeks to go until SQLSaturday#200 at 45
Liberty Blvd., Suite 210 Malvern, PA 19355, Malvern, PA, 19355 they're...
2013-05-20
1,771 reads
This month’s rendition of T-SQL Tuesday - #42, is hosted
by SQL MVP, Wendy Pastrick (blog|twitter) , who maintains her blog about Life,...
2013-05-14
1,196 reads
{Start Circus bumper music here} LADIES and GENTLEMEN; SQL SERVER
PROFESSIONALS of ALL AGES, Come one, come all!
Get ready for a...
2013-04-17
1,235 reads
As I was
exploring the twitter verse, I came across a post with the invitation to this
week’s TSQL
Tuesday #41, and immediately...
2013-04-09
2,309 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