Immune Systems, User Groups, Changing Jobs
I've been off-line except for hints here and there for the last couple of weeks due to fighting off an...
2008-12-04
1,074 reads
I've been off-line except for hints here and there for the last couple of weeks due to fighting off an...
2008-12-04
1,074 reads
I had an interesting question from someone that I respect and I’ve seen answering questions and writing a few articles...
2008-12-04
324 reads
Speaker: Paul Shearer
Midlands PASS Chapter - December 4, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday,...
2008-12-04
857 reads
Last event of the year here in Florida. I'll be heading to the Tampa Code Camp to do a presentation...
2008-12-04
224 reads
A few of you might be thinking about getting a Kindle for Christmas.If you read a lot, and you move...
2008-12-03
736 reads
Over the past several months, I’ve started diving into the world of wait stats on my instances. An ever present...
2008-12-03
720 reads
Hopefully in the next week or so the full financial info will be released to all members, but in the...
2008-12-03
336 reads
… and joined Twitter. I’m only doing it ‘cuz everybody else is doing it. With all the other social networking tools...
2008-12-02
620 reads
You will see this or a similar code sample when referring to clearing the analysis services cache. However, I have...
2008-12-02
570 reads
After taking off 2 days last week for Thanksgiving, and outsourcing 3 editorials (Thanks to Phil Factor and Tony Davis),...
2008-12-02
428 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