RedGate Source Control for SQL Server Webinar from Pluralsight
Join this webinar from Pluralsight, a very well known developer training company. Learn how SQL Source Control can help you keep track of your code.
2011-03-08
3,021 reads
Join this webinar from Pluralsight, a very well known developer training company. Learn how SQL Source Control can help you keep track of your code.
2011-03-08
3,021 reads
The 2011 edition of MVP Jacob Sebastian's T-SQL Quiz is underway. You can take part in the quiz each day, submitting your answers for the chance to show off your knowledge and perhaps win some prizes.
2011-03-04
4,394 reads
A free day of training in Denver on Mar 5, 2011. Learn about Windows, .NET, SQL Server, Sharepoint and more. Spread the word to people you know in the area.
2011-03-02 (first published: 2011-02-16)
2,378 reads
SQL Saturday comes back to Philly on Mar 5, 2011. Spread the word and come get a free day of training on SQL Server.
2011-02-28 (first published: 2011-02-15)
2,382 reads
SQLServerCentral launches a new series of content today, aimed at helping you bootstrap your knowledge in specific areas of SQL Server.
2011-02-17
2,781 reads
Come learn about SQL Server in Phoenix on Feb 19, 2011. For free! Spread the word to anyone you know in the area.
2011-02-14 (first published: 2011-02-09)
1,726 reads
Learn Integration Services from SSIS expert and MVP, Andy Leonard in March. This 5 day class will be held on Mar 21-25, 2011 in Farmville, Virginia.
2011-02-10 (first published: 2011-01-25)
6,075 reads
Come get a free day of training in Colorado Springs on Feb 12 and meet Steve Jones of SQLServerCentral.
2011-02-08
1,261 reads
A free day of training in paradise. Come to SQL Saturday in the islands on Apr 1, 2011.
2011-02-04
1,708 reads
SQL Saturday goes international on Feb 26, 2011. If you can attend, be sure you stop by.
2011-02-03
1,327 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