SQLRelay Reading - Build a CI Pipeline in 55 Minutes Talk
I had a lot of fun yesterday presenting my talk on how to go from not having your database in...
2015-10-09
52 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in...
2015-10-09
52 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in...
2015-10-09
23 reads
If you already have a source code repository for your app code or other databases or you have another team that uses source control then just use theirs.
If you...
2015-10-09
3 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in version control to deploying to a CI database, running...
2015-10-09
5 reads
Niche tool of the day
If you know what a deployment contributor is and have wanted to see what steps were...
2015-09-30
928 reads
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps...
2015-09-30
214 reads
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps...
2015-09-30
206 reads
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps were in a plan and have got bored setting...
2015-09-30
3 reads
To help with this scenario (it is pretty specific):
You have a table that has columns that you do not know...
2015-09-23
870 reads
To help with this scenario (it is pretty specific):
You have a table that has columns that you do not know...
2015-09-23
69 reads
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...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
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