Your Boss Wants You To Be Better at X
Imagine that you use a piece of software as part of your work, but it’s not what you consider the...
2012-09-19
703 reads
Imagine that you use a piece of software as part of your work, but it’s not what you consider the...
2012-09-19
703 reads
My current client has a five story building, two break rooms and two sets of bathroom per floor, with I’m...
2012-09-17
625 reads
Most managers and employers distinguish between attending a conference and training. We (the royal SQL community we) offer quite a...
2012-09-14
1,116 reads
Order status on the web site still shows an estimated ship date of the 4th (of September) for my X1...
2012-09-14
812 reads
Since earlier this year I’ve been thinking to replace my aging but still useful laptop, mostly to get something lighter,...
2012-09-13 (first published: 2012-09-08)
1,877 reads
Sharing some stuff I’ve read recently that I found interesting – and that you may find interesting!
Help More, Judge Less. I’ll...
2012-09-12
663 reads
Last year I wrote about stuff I carry in my laptop bag. Nothing original, definitely a tendency to carry things...
2012-09-12
1,217 reads
Recently I needed to help a colleague with a small inventory true up task. We needed to know items that...
2012-09-10
792 reads
A recent article in the PASS Connector called out some interesting stats about SQLSaturday for 2011 and 2012. I’m including...
2012-09-09
701 reads
Back to the list, what should go in this minimalist creation? Here’s what I have so far:
laptop (yes)
charger (yes – buy...
2012-08-31
1,516 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