A Better Conference
Is there a better way to put together a conference or event? Today Steve Jones speculates on how events are run and how we might change things.
2013-07-05
111 reads
Is there a better way to put together a conference or event? Today Steve Jones speculates on how events are run and how we might change things.
2013-07-05
111 reads
2013-07-05
2,124 reads
2013-07-04
54 reads
2013-07-04
3,136 reads
The state of data security might get worse in the future as more companies gather and share more data.
2013-07-03
143 reads
Life intrudes on work at times, and we must learn to balance the limited time we have. However we also need to remember that we work to live, not live to work.
2013-07-02
277 reads
This week Steve Jones talks performance and a few things you might want to do that can help your career and employer.
2013-07-01
336 reads
The world is bigger than you, and when you help others, you realize that. Making that change might also make you happier, and more successful, in your career.
2013-07-01
108 reads
2013-06-28
187 reads
Technical interviews don't work great, but are they dead? Is there a better way? Steve Jones comments today.
2013-06-27
355 reads
By HeyMo0sh
Working in DevOps long enough teaches you two universal truths: That’s exactly why I...
By Steve Jones
Finding duplicates was an interview question for me years ago, and I’ve never forgotten...
By HeyMo0sh
Over time, I’ve realised that one of the hardest parts of cloud management isn’t...
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