Cheap Vacation/Travel Books
As you've probably noticed via the blog I read a lot; technical, fiction, and non-fiction. Reading can be an expensive...
2008-09-25
1,718 reads
As you've probably noticed via the blog I read a lot; technical, fiction, and non-fiction. Reading can be an expensive...
2008-09-25
1,718 reads
Why did I write this? I got challenged by Andy Warren
to write a bit about why I wrote something. I...
2008-09-25
1,585 reads
Pershendetje te gjithve...edhe perkunder voneses se postimeve te njepasnjeshme ne blog si duket deri me tani jeni njoftuar te gjithe...
2008-09-25
1,823 reads
EarlierI mused a bit about when and why it makes sense to upgrade to a new laptop. One note I...
2008-09-24
2,028 reads
Why did I write this? I got challenged by Andy Warren
to write a bit about why I wrote something. I...
2008-09-23
1,533 reads
I've never really gotten the social site thing. I don't get the appeal of Facebook, LinkedIn, Plaxo, MySpace, etc., beyond...
2008-09-23
1,628 reads
Several years ago during the first iteration of the Orlando SQL Server Users Group I talked a friend into attending....
2008-09-23
1,835 reads
I've been playing with WSUS lately and I've been less than satisfied with the reporting. Since the information I need...
2008-09-23
1,108 reads
Mechanical posts are ones that are either auto-generated, or manually input with no real additional work put into them - an example...
2008-09-22
1,037 reads
Why did I write this? I got challenged by Andy Warren to write a bit about why I wrote something....
2008-09-22
764 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,...
Having trouble attracting leads or visibility online? We develop the best digital marketing strategies...
Posting regularly but not getting engagement or sales? As one of the best social...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
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