Can a Data Professional Be Organized?
“One of the advantages of being disorderly is that one is constantly making exciting discoveries.” While this quote is true...
2017-05-05 (first published: 2017-04-25)
1,423 reads
“One of the advantages of being disorderly is that one is constantly making exciting discoveries.” While this quote is true...
2017-05-05 (first published: 2017-04-25)
1,423 reads
I recently was on a call where a technical unit indicated they did not receive any form of documentation around...
2017-04-24 (first published: 2017-04-19)
1,318 reads
This month’s topic by Koen Verbeeck (B|T) is based around times that are a changing. To break it down somewhat...
2017-04-11
349 reads
Being a data professional you assume a certain amount of responsibility. It often requires having the right attitude and an...
2017-04-17 (first published: 2017-04-10)
1,385 reads
Often times we as leaders within our respective shops tend to waste our time focusing on the wrong things. Think...
2017-04-06
373 reads
If you’ve been involved in technology for any length of time you are aware of outside threats to your network...
2017-04-05
365 reads
Last night I saw a tweet from Matt Gordon (b|t); the topic caught my eye – “How I Became A…SQL Server...
2017-04-04
394 reads
I was recently approached and asked, “What is SQL Saturday? I actually get asked that question more times than not...
2017-04-03
383 reads
This post is for all you up and coming data professionals out there. Over the course of the last week...
2017-03-21
468 reads
Hello much younger Yates. Hope you’ve been doing well. Why don’t you pull up a chair and stay for a...
2017-01-31
687 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
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)...
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