Writing Your Resume
There’s a lot of info out there about putting together a resume, and I probably can’t add a lot, but...
2011-08-17
787 reads
There’s a lot of info out there about putting together a resume, and I probably can’t add a lot, but...
2011-08-17
787 reads
I wanted to write this because its often overlooked. I care about things that may not interest you, things that...
2011-08-16
572 reads
Micromanaging is one of those words that evokes an instant negative image. Certainly there are times when it happens, but...
2011-08-15
627 reads
This was the third SQLSaturday in South Florida and the third time I’ve attended, just too good an event to...
2011-08-15
727 reads
We’re having a PASS Board meeting and many of us will be staying for the event on Saturday (and an...
2011-08-12
672 reads
Today we have a guest editorial from Andy Warren that looks at commuting to work.
2011-08-11
306 reads
We have a few changes in the election process for PASS this year, one of them is that we have...
2011-08-11
650 reads
The annual Code Camp is coming up on October 1st in Tallahassee and our local SQL group is trying to...
2011-08-10
796 reads
Officially launched today, it’s been a project that took a while to bubble to the top, but we’ve done an...
2011-08-10
666 reads
Just a few quick updates.
First, on the SQLSaturday site we’ll be shortly rolling out an updated logo and layout for...
2011-08-09
625 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