PASS Update #47–Election Review Committee
As always, this represents my own views, I’m speaking only for me and not the entire PASS Board.
Early last week...
2010-11-16
676 reads
As always, this represents my own views, I’m speaking only for me and not the entire PASS Board.
Early last week...
2010-11-16
676 reads
First, if you haven’t tried PAL yet, I highly recommend downloading it from CodePlex and giving it a try. You...
2010-11-15
889 reads
Thursday ended with a ‘Meet the Board’ meeting where attendees could come ask the Board questions or present ideas. It...
2010-11-15
734 reads
Quick recap of yesterday afternoon: blur! I know I did stuff, but the pace is brisk and I’m just keeping...
2010-11-12
545 reads
Started the day with a work call and some email, then down to Top Pot with Ron Dameron and Aaron...
2010-11-10
658 reads
I’m writing this Wednesday morning, and it’s hard to describe the feeling of speed that comes with being here this...
2010-11-10
511 reads
I’m writing this on Tuesday morning, Monday was a blur. I awoke at 4 am, finally decided that sleep wasn’t...
2010-11-09
628 reads
My day started at 5:15 to get moving for the airport. Arrived right at 2 hours early to find that...
2010-11-09
536 reads
Started my day by going up to the club floor for the continental breakfast, met Mark Souza on the elevator...
2010-11-09
564 reads
I wrote the editorial asking what people would have been if they had been born 100 years earlier. It’s a...
2010-11-09
449 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 everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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