Speaking at the 2011 PASS Summit
The emails came in today and 2 out of 4 of my sessions were selected. Both are the ones I...
2011-06-15
891 reads
The emails came in today and 2 out of 4 of my sessions were selected. Both are the ones I...
2011-06-15
891 reads
A small post regarding a couple SQL books I bought from Amazon.
A couple new books arrived in the mail from...
2011-06-15
859 reads
The official launch of SQL Saturday #89 was June 8th. Within the first week of the launch we have registered...
2011-06-15
507 reads
This error , Cannot read the next data row for dataset Dataset1, is thrown for many reasons, at least I have seen...
2011-06-15
5,340 reads
In case you hadn’t heard, the 2012 SQL Rally will be in Dallas. Andy Warren talks about the process for...
2011-06-15
934 reads
Relation Types
create type type_T(i int primary key clustered, j int check (j > 0)) -- relation type. Includes constraints!
create table T(type_T)
Relvar Assignment
This...
2011-06-15
956 reads
I just noticed three very recent new TPC-E Benchmark Submissions that I thought were quite interesting. As I have written...
2011-06-15
940 reads
After posting on twitter last week that I needed something to write a blog post about my good friend Christian...
2011-06-15
673 reads
I haven’t tried this, but run across a reference to hashtagart that looks pretty interesting as a way to use...
2011-06-14
631 reads
Hi all! I’m on vacation this week, but I’ve cleverly scheduled this blog post so you won’t miss me too...
2011-06-14
628 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