Bloggers-Don’t Blog About Spam!
Earlier this week I posted Bloggers, Quit Worrying About Spam, discussing what I felt was an over-focus on preventing spam...
2010-10-27
683 reads
Earlier this week I posted Bloggers, Quit Worrying About Spam, discussing what I felt was an over-focus on preventing spam...
2010-10-27
683 reads
Imagine you’re talking with a recruiter about a position that seems like a good fit and during that conversation they...
2010-10-27
596 reads
With SQLSaturday #49 we tried something I call micro-sponsors, charging $5 for a blogger to sponsor the event. It’s a...
2010-10-26
991 reads
I don’t comment as often as I should on blog posts. I say should because as a blogger I know...
2010-10-25
600 reads
Bill Graziano posted our 2011 budget today. This runs from Jul 1, 2010, through Jun 30, 2011. I hope you’ll...
2010-10-22
674 reads
One more from the ‘new book’ shelf at the library, All Things at Once is an auto biography of Mika...
2010-10-22
705 reads
So far SQLSaturday Tampa will be the first SQLSaturday of 2011, and the first one I’ll be attending in 2011...
2010-10-22
580 reads
Today we have a guest editorial from Andy Warren that talks about ways to enjoy life without spending a lot of money. Some of these might even be great team building ideas.
2010-10-21
185 reads
I was just writing a thank you message to our speakers for SQLSaturday #49 and wanted to write down a...
2010-10-21
588 reads
I wrote Cheap Fun after buying a really cheap – $1 – wood airplane kit at the store for the kids. Amazing...
2010-10-21
737 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