Who Is This Super Hero?
We recently switched from Brighthouse to DirectTV and of the first things we did was to find the kids channels...
2011-02-17
563 reads
We recently switched from Brighthouse to DirectTV and of the first things we did was to find the kids channels...
2011-02-17
563 reads
I work with a client that has an office about 25 yards from a train track and recently the railroad...
2011-02-14
609 reads
Packing for Mars by Mary Roach ($15 @ Amazon) is a ton of fairly interesting trivia about the space program, space...
2011-02-11
732 reads
Today we have a guest editorial from Andy Warren. Work can seem mundane and tedious at times, and today Andy asks you you remain engaged when the work isn't exciting.
2011-02-11
216 reads
One of the things I enjoy about work is seeing the various cultures that evolve. Some companies are rigid, some...
2011-02-10
1,362 reads
It’s been a few weeks since I wrote my early thoughts on my goals for this year, and you can...
2011-02-09
792 reads
I saw an article in American Woodworker by Alan Lacer about making wooden doorstops and decided to try one. You...
2011-02-07
513 reads
We’re doing weekly calls for the ERC (election review committee) and we seem to be making some progress. This past...
2011-02-03
657 reads
Linked in sent me an email saying that an astounding 209 of my connections changed jobs in 2010, out of...
2011-02-03
537 reads
I don’t generally post bits of this and that, but I’ve accrued a few things that I wanted to share,...
2011-02-02
599 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