Car Update - 3rd Generation Prius
I'm on the Prius mailing list since I bought a Prius and Toyota hopes that I'm
Happy with my Prius Willing...
2009-05-08
587 reads
I'm on the Prius mailing list since I bought a Prius and Toyota hopes that I'm
Happy with my Prius Willing...
2009-05-08
587 reads
At the end of August 2009 will organize the Software Freedom Kosova 2009, the big event for the Open Source...
2009-05-08
441 reads
Fiction review this week. I recently read Patriot Acts by Greg Rucka, the continuation of the story that started in...
2009-05-07
279 reads
I'm just finishing up SQL Server 2008 Query Performance Tuning Distilled by Grant Fritchey and Sajal Dam and overall I've...
2009-05-07
486 reads
While perusing some of the threads on SQLServerCentral.com one of the questions that hit me was regarding the use of...
2009-05-07
3,344 reads
Star Trek is coming back to theaters soon, and I’ve been watching Season 1 of Star Trek: TNG while running.
It...
2009-05-07
344 reads
I just recieve the announcement for the Mircosoft event TechUpdate 2009, in Prishtina capital city of Kosova! The event will...
2009-05-06
462 reads
I haven’t written about the Kindle lately, but I have noticed some news and I found it interesting.
First I saw...
2009-05-06
518 reads
Yep, yesterday in Prishtina, capital city of Kosova was held the event named, Oracle Day in Kosova! It was very...
2009-05-06
522 reads
A few weeks back I wrote about trying out the LinkedIn Add-in and time has reinforced for me that it's...
2009-05-06
486 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