Dustin Ryan: Power Pivot 101: An Introduction
The PASS Excel Business Intelligence virtual chapter presents Dustin Ryan introducing everybody to Power Pivot in Excel. This chapter has...
2015-09-07
653 reads
The PASS Excel Business Intelligence virtual chapter presents Dustin Ryan introducing everybody to Power Pivot in Excel. This chapter has...
2015-09-07
653 reads
DevConnections is a new conference for me and I am excited about the opportunity to present 2 different sessions. The...
2015-08-11
613 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
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)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
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