The Car Update – Prius Sales
I haven’t done a car update in some time, and I’d like to get back to them. Surprisingly quite a...
2009-11-23
722 reads
I haven’t done a car update in some time, and I’d like to get back to them. Surprisingly quite a...
2009-11-23
722 reads
When you have a team of people working together to manage systems, communication becomes important. Steve Jones notes that a lack of working with each other and letting the rest of the team know what you are doing can cause unnecessary work for others.
2009-11-23
1,074 reads
When you have a team of people working together to manage systems, communication becomes important. Steve Jones notes that a lack of working with each other and letting the rest of the team know what you are doing can cause unnecessary work for others.
2009-11-23
874 reads
When you have a team of people working together to manage systems, communication becomes important. Steve Jones notes that a lack of working with each other and letting the rest of the team know what you are doing can cause unnecessary work for others.
2009-11-23
718 reads
One of the things that I thought about doing after the 2008 PASS Summit was to bring someone along with...
2009-11-20
704 reads
Would you like to have only SQL Server Authentication on your instances? That's the subject of this Friday's poll.
2009-11-20
86 reads
Would you like to have only SQL Server Authentication on your instances? That's the subject of this Friday's poll.
2009-11-20
3,164 reads
Would you like to have only SQL Server Authentication on your instances? That's the subject of this Friday's poll.
2009-11-20
979 reads
Would you like to have only SQL Server Authentication on your instances? That's the subject of this Friday's poll.
2009-11-20
961 reads
Software licensing can be complex and confusing. Even in Windows and SQL Server, where hard limits are not enforced, people have problems determining how they should license software. Steve Jones talks about what vendors could do to help us.
2009-11-19
196 reads
By HeyMo0sh
Over time, I’ve realised that one of the hardest parts of cloud management isn’t...
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...
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