T-SQL Code Coverage in SSDT using the SSDT Dev Pack
Code Coverage What is code coverage? When you write some code and then test it, how sure are you that...
2016-01-13
69 reads
Code Coverage What is code coverage? When you write some code and then test it, how sure are you that...
2016-01-13
69 reads
Code Coverage What is code coverage? When you write some code and then test it, how sure are you that...
2016-01-13
55 reads
I often get asked the questions “What is SSDT" and I have wanted to have a single reference as to...
2016-01-11 (first published: 2016-01-05)
4,184 reads
In the final part of this 3 part series on what SSDT actually is I am going to talk about the documented API. What I mean by documented is...
2016-01-07
3 reads
In the final part of this 3 part series on what SSDT actually is I am going to talk about...
2016-01-07
52 reads
In the final part of this 3 part series on what SSDT actually is I am going to talk about...
2016-01-07
32 reads
In the final part of this 3 part series on what SSDT actually is I am going to talk about...
2016-01-07
871 reads
In the final part of this 3 part series on what SSDT actually is I am going to talk about...
2016-01-07
45 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked about the first major category the development ide and...
2016-01-06
2 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
17 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