Notes from SQLSaturday #168 in Tampa
I made a quick trip to Tampa for #168 this past weekend. It was a “BI Edition” and it felt...
2012-11-21
944 reads
I made a quick trip to Tampa for #168 this past weekend. It was a “BI Edition” and it felt...
2012-11-21
944 reads
For the few past few years the Board has scheduled time to take questions from members at the Summit. This...
2012-11-11
1,071 reads
Allen Kinsel will be leaving the Board of Directors this year after serving a two year term and Kendal is...
2012-11-09
1,045 reads
Late posting this, has been a busy week!
Started the day at Top Pot, meeting up with Jack Corbett and some...
2012-11-09
860 reads
Wednesday was a blur. I had breakfast at the Convention Center, mostly to see how it was – ok, muffins, cereal,...
2012-11-09
896 reads
Thursday. Slept a little better but still waking up on east coast time. Not a lot to do in Seattle...
2012-11-09
906 reads
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)
Showing a picture of...
2012-11-08
854 reads
Starting off with Douglas McDowell talking about the opening video that highlighted people from a lot of different countries, lots...
2012-11-08
751 reads
Quentin Clark today:
Long monologue about the possibilities of data.I’d like to think we all get that already.
2012-11-08
767 reads
It’s 8:15 on Wednesday and I’m at the blogger table, hoping for a good to great keynote.
First up is Bill...
2012-11-07
780 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