August SSSOLV Reminder
Just another reminder about the Las Vegas User Group meeting coming up on August 12th.
Here is the info:
The S3OLV UG...
2010-08-10
468 reads
Just another reminder about the Las Vegas User Group meeting coming up on August 12th.
Here is the info:
The S3OLV UG...
2010-08-10
468 reads
Consider this one a thinking out loud post more than most. We’ve had an explosion of speakers in the SQL...
2010-08-10
227 reads
Again I want to apologize for the slow posting of the solution to this puzzle, but I have been hard...
2010-08-10
573 reads
MS just announced this publicly last week, it’s a Visual Studio product that seems to be geared towards the not-quite-developer...
2010-08-10
354 reads
It is once again time for the blog party known as TSQL Tuesday. I am hosting this month and wanted...
2010-08-10
611 reads
Well not me. It wasn’t my design, but when I went through the entries, this was the one that caught...
2010-08-10
925 reads
With 63% of the total votes our winner is Speedometer! Congratulations to azzam on 99designs and thank you to everyone...
2010-08-10
548 reads
“Building an easy-to-use tool does not make an amateur more skilled at making applications and more than a $900 table...
2010-08-10
786 reads
I almost forgot about T-SQL Tuesday this time, so I’m scrambling to get an entry done today.
This is a...
2010-08-10
832 reads
T-SQL Tuesday #009: Beach Time: My Work Away From Work
This blog entry is participating in T-SQL Tuesday #009, hosted...
2010-08-10
672 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,...
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