Pass Summit 2017
It’s about that time of year again when there is a buzz in Seattle in regards to PASS Summit. Many...
2017-10-26
414 reads
It’s about that time of year again when there is a buzz in Seattle in regards to PASS Summit. Many...
2017-10-26
414 reads
This week has been a whirlwind; as the results came in earlier this week on the election I wanted to...
2017-09-28
536 reads
This year I decided to take “someday” to heart and do something that has been on my mind for awhile...
2017-09-21 (first published: 2017-09-14)
1,674 reads
As part of the campaign material for this years election for Board of Directors; the candidates were asked to answer...
2017-09-19
405 reads
And like the wind another SQL Saturday Louisville has come and gone. This past weekend seemed to be a huge...
2017-08-09
483 reads
We are having an extra Louisville SQL Server and Power BI User Group meeting this month due to the SQL...
2017-07-24
411 reads
Last week Aaron Bertrand (b|t) published a post regarding five new PAC Community Ambassadors for SentryOne. I am privileged and...
2017-07-17
333 reads
Wow, hard for me to believe it has been a little bit since the last T-SQL Tuesday block party. This...
2017-07-11
483 reads
Over the course of several years, I have given many technical and non-technical presentations. It is fun for me to...
2017-06-07
446 reads
“One of the advantages of being disorderly is that one is constantly making exciting discoveries.” While this quote is true...
2017-05-05 (first published: 2017-04-25)
1,423 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