Speaker Selection for SQLSaturday Orlando–More!
More speakers from Florida! Scott Klein lives in Seattle now, but we still consider him an honorary Floridian according to...
2012-07-15
645 reads
More speakers from Florida! Scott Klein lives in Seattle now, but we still consider him an honorary Floridian according to...
2012-07-15
645 reads
Overall I find the site to be useful and responsive, but sometimes I see small things that I wish were...
2012-07-15
648 reads
Here are a few things I’ve found/had sent to me recently you may find interesting:
Most Common GRE Words. 400 words...
2012-07-12
675 reads
I’ve thought about writing on this topic a couple times and was reminded of it again when I read a...
2012-07-09
1,188 reads
Three more added to the stellar slate of speakers for SQLSaturday Orlando, we look forward to seeing you soon!
Ira Whiteside
Devin...
2012-07-09
510 reads
We’ve selected 10 speakers so far, today we bring it to a fabulous bakers dozen with three more – all based...
2012-07-07
731 reads
Ten speakers selected, and as we go into the July 4th holiday we’re going to add two more to that...
2012-07-03
318 reads
So far we’ve selected 8 speakers for SQLSaturday #151 in Orlando this year (see Group #1 and Group #2), today...
2012-07-02
757 reads
A pattern I’ve seen over and over again at many different jobs is that some people are not held accountable...
2012-07-02
764 reads
Today we’re starting to announce speakers that will have at least one session on the schedule for SQLSaturday #151 in...
2012-06-28
1,554 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