Call in the Experts
Today we have an editorial from Feb 1, 2006 that is being reprinted as Steve Jones is on vacation. Steve talks about the need to call in a friend to check on the performance of the SQLServerCentral servers.
2010-12-23
93 reads
Today we have an editorial from Feb 1, 2006 that is being reprinted as Steve Jones is on vacation. Steve talks about the need to call in a friend to check on the performance of the SQLServerCentral servers.
2010-12-23
93 reads
Today we have a guest editorial from November 26, 2005. Steve Jones talks about the transition to 64 bit architectures.
2010-12-21
174 reads
Congratulations to the following winners of our iPads for Christmas contest. It was a hard choice, but I ended up...
2010-12-20
1,298 reads
Today we have an editorial reprinted from April 27, 2005. Steve Jones is on vacation, so we are reprinting this look at backup strategies and media.
2010-12-20
227 reads
As we approach the holidays, Steve Jones talks about the latest blog theme, and how nice it is to see these types of things from the community.
2010-12-20
177 reads
you can help me for the visule studio 2005 programe I have assigment
I do not how to use for...
2010-12-17
723 reads
After my call for “What the Business Says Is Not What the Business Wants”, there were quite a few people...
2010-12-17
1,318 reads
2010-12-17
655 reads
Tonight was the 2010 Denver SQL Server User group party. I typically haven’t done in the past to the holiday...
2010-12-16
1,157 reads
To what extent should a hypervisor company support other software? Will this have implications for cloud computing, or services used in software? Steve Jones comments.
2010-12-16
79 reads
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
Comments posted to this topic are about the item Fun with JSON II
Comments posted to this topic are about the item Changing Data Types
Comments posted to this topic are about the item Answering Questions On Dropped Columns
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 t1.[key] AS row,
t2.*
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t1
CROSS APPLY OPENJSON(t1.value) t2; See possible answers