Lists of Words You May Not Know
The Merriam-Webster site has an interesting list of Top 10 Lists, ranging from commonly confused words to things you didn’t...
2011-11-14
643 reads
The Merriam-Webster site has an interesting list of Top 10 Lists, ranging from commonly confused words to things you didn’t...
2011-11-14
643 reads
Today we have a guest editorial from Andy Warren that examines the first impressions that you create when you meet someone.
2011-11-11
126 reads
Quick notes as it is already Thursday!
The speaker party went well. Well attended, I spent a lot of time chatting...
2011-11-10
552 reads
A lot of my work right now involves going to meetings. A few of them are ones I host, a...
2011-11-10
619 reads
With the movie coming out I realized somehow I’d missed reading Moneyball by Michael Lewis. It’s the story of how...
2011-11-09
691 reads
Recently I had the luxury of a long afternoon lunch at Chipotle on a Sunday afternoon, catching up on some...
2011-11-07
799 reads
This post is password protected. To view it please enter your password below:
Password:
2011-11-04
391 reads
With a little bit of luck I’ll be arriving in Orlando today around 9 am as I return from SQLConnections...
2011-11-04
532 reads
I was in a meeting recently that had some quiet tension to it, at least two different sides represented and...
2011-11-02
529 reads
Reading this post about Alton Brown from Good Eats triggered me to think on the topic. It looks like initially...
2011-11-01
466 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
Looking for a creative and experienced mobile game development company that brings your game...
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