DevExpress and a Stumper
Late last year I used the DevExpress controls for a small task after they were recommended by a friend. Very...
2010-01-14
592 reads
Late last year I used the DevExpress controls for a small task after they were recommended by a friend. Very...
2010-01-14
592 reads
I bought a Bamboo Touch over the holiday break, it’s a multi-touch pad with stylus. Easy install, basically plug in...
2010-01-13
894 reads
Last week I posted about Picking a Blog Platform on some of the process that lead to me moving to...
2010-01-12
743 reads
Not sure if it went to the entire PASS mailing list or just those that have attended a Summit, but...
2010-01-12
661 reads
Posting goals online is great as long as you meet your goals, can be something less than great if you...
2010-01-12
800 reads
One of my big projects this year is to build a speaker bureau, so in this post I’m going to...
2010-01-11
754 reads
The Billion Dollar Game: Behind the Scenes of the Greatest Day In American Sport – Super Bowl Sunday
Another from the new...
2010-01-08
628 reads
One of our goals for oPASS in 2010 is to host 12 meetings instead of our usual 6. That doubles...
2010-01-08
367 reads
Brian Knight and the JSSUG team will be doing their third SQLSaturday this year on May 8, 2010, at the...
2010-01-08
313 reads
I’ll be heading to Tampa the afternoon of the 22nd for the speaker party, and then presenting Social and Not...
2010-01-07
325 reads
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)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
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