Soon will start 24 Hrs of PASS – free SQL knowledge stuff
Yes, 24 Hours of PASS will start soon two days in row, 7-8 September 2011! Just for info for those...
2011-09-06
763 reads
Yes, 24 Hours of PASS will start soon two days in row, 7-8 September 2011! Just for info for those...
2011-09-06
763 reads
2011-06-13
It's late but I need to say some words about our local tech event, it is the only one that...
2011-06-10
1,994 reads
Today Marlon Ribunal twittes come with new info about MS Certifications exams are rising…
This is not a good news, so...
2011-04-28
749 reads
Today Marlon Ribunal twittes come with new info about MS Certifications exams are rising...
This is not a good news, so...
2011-04-26
915 reads
Hello everybody, some tech events are announced to be held in Kosova soon …
Soon other details will be posted and...
2011-04-19
524 reads
Free tools are very welcome to the community, while some of the creators of these kind of the tools are...
2010-12-28
1,530 reads
SAC (Surface Are Configuration) was the great possibility to configure the SQL Server 2005, so there were some options to...
2010-12-17
1,484 reads
Update from Microsoft for SQL Server 2008 & 2008 R2. There is the graphical map of the system views included SQL...
2010-12-09
1,036 reads
Yesterday, I have received the official email from the PASS HQ, and the confirmation that now I'm the leader of...
2010-11-25
818 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,...
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