Building the SQLSaturday Orlando Marketing Plan–Part 4
I spent some more time last night thinking about the event and marketing it. Biased I am, but I think...
2014-05-01
634 reads
I spent some more time last night thinking about the event and marketing it. Biased I am, but I think...
2014-05-01
634 reads
A good one, one of the better diagrams I’ve seen.
From http://markosrendell.wordpress.com/2014/03/03/practical-benefits-of-continuous-delivery/
Now if we can get tooling and processes to make...
2014-05-01
800 reads
This is a followup to a previous post where I likened SQL Server float datatype to Muhammad Ali. Specifically, I...
2014-05-01 (first published: 2014-04-23)
2,955 reads
One of the OP requested in the forum to find all table details of any database. The details which includes Number...
2014-05-01
1,079 reads
One of the OP requested in the forum to find all table details of any database. The details which includes Number...
2014-05-01
569 reads
Not just for math geeks, logarithms and their inverse functions (the exponentials) can have useful and often unexpected capabilities in...
2014-05-01
2,420 reads
Summer SQL Server & Database Events In and Around NY-
Happy May everyone!
Hope those April showers will bring us May flowers! ...
2014-05-01
2,355 reads
Do you know what the “Three A’s of Security” are and how they apply to Microsoft SQL Server? Let’s look...
2014-05-01 (first published: 2014-04-22)
7,355 reads
I tend to be amused when I run into something that causes me stress because I like to think – foolishly...
2014-04-30
1,428 reads
I wouldn't have decided to write this post if I didn't see my boss at one of my previous jobs...
2014-04-30
1,709 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