2007-12-25
35 reads
2007-12-25
35 reads
A quick workaround from a longtime community member that helps you prevent the LF/CR from being lost if you copy scripts from the code tags in your posts.
2007-11-27
1,304 reads
SQLServerCentral.com is always looking for ways that we can provide you with better, more useful content to help you learn about SQL Server. We've got a new idea and we're looking for feedback.
2007-11-12
393 reads
We reached the half million member milestone last week and had a contest. Read on to see the winners.
2007-10-08
555 reads
We crossed the 500,000 member mark last week and we're looking to give away some prizes!
2007-10-02
1,913 reads
A few proposed changes to the newsletter. Read about them and give us some feedback on what you think.
2007-09-27
588 reads
2007-09-26
526 reads
With the new codebase in place, RSS is pervasive throughout the site. Get a few hints here on how this works.
2007-09-25
2,251 reads
Lots of changes to the site, see how to work with some of them.
2007-09-24
1,955 reads
The third evolution in the history of SQLServerCentral.com is now out and available. Read all about the changes we've gone through.
2007-09-24
1,457 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