Play the T-SQL Alphabet Game
I recently had the opportunity to play the T-SQL Alphabet Game, which was introduced to me by SQL Server MVP,...
2009-01-21
1,253 reads
I recently had the opportunity to play the T-SQL Alphabet Game, which was introduced to me by SQL Server MVP,...
2009-01-21
1,253 reads
The 2009 devLINK Technical Conference will be held in Nashville, TN, August 13-15, 2009. This three-day conference provides technical content...
2009-01-15
474 reads
If you couldn’t make it to the 2008 PASS Community Summit in Seattle, WA last fall, perhaps you can attend...
2009-01-14
669 reads
If you live in the Colorado area, you might want to attend the upcoming, free Rocky Mountain Tech Tri-Fecta event,...
2009-01-13
423 reads
SQLBits is the largest free SQL Server conference in Europe, and will include 20 hours of SQL Server sessions to...
2009-01-13
701 reads
With the current economic downturn, many of us are wondering if we will still have a job by the end of this new year. Although DBAs are still in demand, no DBA job is 100% immune from layoffs. Brad suggests that now is the perfect time to invest in yourself.
2009-01-08
190 reads
If you are thinking about attending DevTeach/SQLTeach in Vancouver this June 8-12, 2009, and you haven't registered yet, you need...
2009-01-06
431 reads
Traditionally, analyzing Performance Monitor data has not been an easy task. It often involved viewing Performance Monitor logs in graph...
2008-12-23
3,779 reads
If you haven't done so, check out this Simple-Talk Editorial by Tony Davis, in addition to all the comments the...
2008-12-23
704 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
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