A Week of Books - Part 4
Magazines today instead of books, but hopefully you'll count that as close enough to my theme of the week. I...
2008-12-17
540 reads
Magazines today instead of books, but hopefully you'll count that as close enough to my theme of the week. I...
2008-12-17
540 reads
In a previous blog post, I suggested that less than professional content, that you or others post on the Internet...
2008-12-17
1,163 reads
I have been active on the Internet for 15 years, and during that time I have left a long trail...
2008-12-17
1,069 reads
Back in October I had the opportunity to work with Andy Warren and do a series of SQL Server security...
2008-12-17
1,401 reads
Can you believe it? Microsoft has just released an iPhone application for the first time and I doubt it will...
2008-12-17
2,051 reads
You might think it's the e-ink screen. It's not.
You might think it's the ability to carry around hundreds of books...
2008-12-17
861 reads
I saw this blog from Jeffrey Yao on investing in your career, and thought it would be a great editorial....
2008-12-16
818 reads
I remember when each of my boys started to read a lot. There was a time when both of them...
2008-12-16
767 reads
Another diabolical idea of Chris Shaw. I'm actually late to the game because I got tagged a week ago by...
2008-12-16
985 reads
I first saw a Surface Computer at the Sheraton in Seattle and thought it was pretty cool, but not necessarily...
2008-12-15
740 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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