December 2011 LV UG Meeting
The Holidays are upon us. It is time to take a break from the hustle and bustle and come out...
2011-11-30
1,628 reads
The Holidays are upon us. It is time to take a break from the hustle and bustle and come out...
2011-11-30
1,628 reads
The Holidays are upon us. It is time to take a break from the hustle and bustle and come out to participate in the local User Group for SQL...
2011-11-30
5 reads
Back in August, I published a post on exporting SSRS report files en masse. That article (which can be read...
2011-11-29
1,659 reads
Pro-tip on how to quickly and easily migrate data sources for reporting services.
Related Posts:
File Maintenance - Cleaning Up Old Files December 21, 2018
Get a List of Files with...
2011-11-29
16 reads
Since Deep Dives 2 came out, I had been putting off getting my copy of the e-book until I wanted...
2011-11-23
787 reads
Since Deep Dives 2 came out, I had been putting off getting my copy of the e-book until I wanted the book for travel purposes. I decided I really...
2011-11-23
4 reads
Finally, I have completed another book. I took the opportunity while traveling to catch up on some reading. Better yet,...
2011-11-22
634 reads
Finally, I have completed another book. I took the opportunity while traveling to catch up on some reading. Better yet, I was able to do this while testing out...
2011-11-22
6 reads
At the beginning of the month, we had a Meme Monday on the topic of SQL Family. I had a...
2011-11-21
663 reads
At the beginning of the month, we had a Meme Monday on the topic of SQL Family. I had a few things to say about the SQL community back...
2011-11-21
6 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