SQLSaturday #423 Baton Rouge
This is I believe the 7th SQLSaturday in Baton Rouge. Please come out this Saturday at the LSU Business Center...
2015-07-27
598 reads
This is I believe the 7th SQLSaturday in Baton Rouge. Please come out this Saturday at the LSU Business Center...
2015-07-27
598 reads
You can download the much hyped up Power BI Desktop (formerly Power BI Designer). There are many blogs about the...
2015-07-24
1,124 reads
The next version of SQL Server looks to add more and more features helpful in database design and administration as...
2015-07-16
981 reads
I was thinking today about why I submit sessions to speak at the PASS Summit.
My first summit was in Denver...
2015-06-26
431 reads
Join us today at noon central for Asgeir presenting for the Excel BI VC.
Thu, Jun 18 2015 12:00 Central Daylight...
2015-06-18
444 reads
I have been selected again to speak in Houston (Saturday, June 13th) for a SQLSaturday event and look forward to...
2015-06-04
532 reads
It is that time of the year when PASS starts a process to help update memberships and clean up duplicate...
2015-05-07
438 reads
Microsoft has given us DBAs/Developers/etc. a wealth of free reports integrated into SQL Server Management Studio (SSMS) in order to...
2015-04-07
796 reads
Come join us Thursday April 2nd for an Excel BI virtual chapter session at noon central with Pragmatic Work’s Devin...
2015-03-29
676 reads
In December, I was asked to write an article(s) on Database Refactoring. It started as 2 topics, but then consolidated...
2015-03-03
837 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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