PASS Update #51-Summit Site Selection
In November/December HQ requested that the Board to send in suggestions for possible sites for the 2013 PASS Summit. I...
2011-02-01
1,563 reads
In November/December HQ requested that the Board to send in suggestions for possible sites for the 2013 PASS Summit. I...
2011-02-01
1,563 reads
This post is my thoughts on the Board meeting, and my views on related topics. I encourage you to read...
2011-01-31
1,951 reads
I’ve been taking a look at MySQL after a long absence to help a client decide if it should be...
2011-01-28
919 reads
I’ve had occasion to watch a lot of people try Profiler, and to hear a lot more about their previous...
2011-01-27
574 reads
Help us promote our upcoming PASS events by including any or all of these on your blog or in your...
2011-01-25
726 reads
I get a lot of questions about how SQLRally is going, which tells me that there is a lot of...
2011-01-20
637 reads
Kendal Van Dyke is launching a new PASS Chapter called MagicPASS in Orlando this week, with the first meeting on...
2011-01-19
682 reads
The weekend started with a later afternoon drive to Tampa, returning a couple calls and then chatting with Steve Jones...
2011-01-17
619 reads
The conventional wisdom tends to hold that you should trumpet your accomplishments to your boss, though in a way that...
2011-01-11
745 reads
I wrote Clouds in our Future to see if I could spark a good conversation about the mental shift required...
2011-01-10
608 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