PASS Election Questions Answered 2
Today I am going to continue with my PASS Election Questions and Answers series. Here is where you can find...
2015-09-17
614 reads
Today I am going to continue with my PASS Election Questions and Answers series. Here is where you can find...
2015-09-17
614 reads
As we continue through the campaign period for this year’s PASS Board of Directors Election (Voting opens tomorrow morning), I...
2015-09-16
512 reads
The 2014 NomCom made some changes to how the election process works and it’s something you need to pay attention...
2015-09-15
514 reads
I’m going to hopefully show examples of some qualities I have that will benefit me if chosen as a board...
2015-09-14
561 reads
I built a brand new virtual machine running Windows 2012 R2 and SQL Server 2016 CTP 2.2 (the June edition). ...
2015-08-13
1,677 reads
On July 15th, 2015 I spoke to the PASS Architecture Virtual Chapter about AlwaysOn Failover Cluster Instances and AlwaysOn Availability...
2015-08-05
1,135 reads
Redgate will be hosting another SQL in the City event on the Monday right before the PASS Summit 2015. This...
2015-08-04
590 reads
The North Texas SQL Server User Group Board of Directors has decided to do something a little bit different for...
2015-07-30
1,079 reads
How could you possibly argue with getting 8 straight hours of SQL Server Performance training for FREE?
You can’t! Go check...
2015-07-20 (first published: 2015-07-14)
3,828 reads
I’ll be doing a precon for SQLSaturday #422 in Oklahoma City on August 28th, 2015 titled “Creating a High Availability and Disaster...
2015-07-15
757 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,...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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