SQLSaturday #129 - City of Rochester, NY
Long before it was announced that coming August 4, 2012, SQLSaturday #158 returns to the NYC (<< see recent announcement, New York...
2012-05-10
1,259 reads
Long before it was announced that coming August 4, 2012, SQLSaturday #158 returns to the NYC (<< see recent announcement, New York...
2012-05-10
1,259 reads
This latest installment of T-SQL Tuesday #30, is hosted by SQL MVP, Chris Shaw who asks us to write on a...
2012-05-08
1,896 reads
It's about three months to to SQLSaturday #158 in NYC, and we're hard at work nailing down all the little...
2012-05-07
1,794 reads
Come this August 4th, 2012, the Big Apple will be baking, but not just because of the hot summer day...
2012-04-27
1,859 reads
Good day! Just wanted to share some exciting upcoming local events in the NYC/NJ area.
Hosted by the NJ SQL User...
2012-04-09
1,228 reads
Tomorrow, Thursday, March 22, 2012, the official Microsoft SQL Server 2012 Special Ops Tour continues its 12-city trek around the...
2012-03-21
1,734 reads
Right on the heels of the recent SQL Server 2012 virtual online launch event (as in virtually not there :-), a...
2012-03-19
1,800 reads
All, wanted to immediately share the news today from Microsoft regarding SQL Server: This just in from the MVP/MS Newsroom. I'm...
2012-03-06
1,630 reads
February 23, 2012 – Today, LINCHPIN PEOPLE, LLC, offering technical advisory, consulting and training services in the Microsoft SQL Server Space,...
2012-02-23
2,473 reads
I wanted to follow-up on the partner announcement of the great new concept and venture, started by my friends and sql...
2012-02-23
1,115 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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