Will You Buy Refurbished? Part 2
Yesterday I shared the small adventure of buying a refurbished laptop. While I was at Compusa looking at laptops I...
2011-12-15
861 reads
Yesterday I shared the small adventure of buying a refurbished laptop. While I was at Compusa looking at laptops I...
2011-12-15
861 reads
I haven’t been to a MagicPASS meeting in a while, so it was nice to reconnect with the group at...
2011-12-14
729 reads
A couple months back the laptop my wife uses was fading away, the internal power connector was broken/barely working and...
2011-12-14
640 reads
The Shredder Challenge was a contest sponsored by DARPA to find ways of putting shredded documents back together. Take a...
2011-12-13
848 reads
Ran across this during my daily reading, a post by Jeff Stibel on Why I Hire People That Fail. The...
2011-12-12
780 reads
My first outing of the new year will be at the IT Pro Camp here in Orlando, working on some...
2011-12-12
646 reads
One of our small holiday traditions is that we bake at least one home made dessert. Hard to beat the...
2011-12-09
648 reads
Sixkill is the 39th Spencer novel, and the last that was written by Robert Parker before his death. The plot...
2011-12-08
643 reads
My perception of the tablet market has been that the iPad is king, but at a kingly price. If I...
2011-12-07
799 reads
For me the Wednesday before Thanksgiving was a quiet day at work. It was one of those ‘everyone is leaving...
2011-12-06
610 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
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