Red-Gate Jumps the Moon
After this morning’s keynote, I managed to make it down to the expo hall JUST in time to catch Red-Gate’s...
2011-10-13
691 reads
After this morning’s keynote, I managed to make it down to the expo hall JUST in time to catch Red-Gate’s...
2011-10-13
691 reads
Welcome to PASS Summit 2011 Day 1!! Be sure to get your very own copy of the hot-off-the-presses MVP Deep Dives...
2011-10-12
1,417 reads
Today was a good day. I posted about the first part of today earlier, and we left off there with...
2011-10-11
513 reads
I made you something wonderful. It’s a cheatsheet for the PASS Summit, which has info about us (of course), about...
2011-10-06
620 reads
Today was also a good day. Sean and I both popped awake at 4:30am local time (6:30am personal time), for...
2011-10-06
513 reads
Summer camp has begun. Sure, people are still en route, but a whole bunch of us are already here and...
2011-10-06
569 reads
Hidy-ho there, neighbors! This is an update of last year’s Attend the PASS Summit from Home blog. I’ll be updating this...
2011-10-03
1,537 reads
Hello and welcome to my live blog/recap of SQL Saturday #97 in Austin! Wes Brown and the crew from CACTUSS...
2011-10-01
494 reads
When I get in to work in the morning, I like a good cup of coffee waiting for me, a...
2011-09-27
1,207 reads
On Tuesday, September 20 at 5p CST (6pm Charleston time), I will present “Unraveling Tangled Code” via LiveMeeting at the...
2011-09-19
601 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