2020-01-22 (first published: 2019-01-31)
401 reads
2020-01-22 (first published: 2019-01-31)
401 reads
Today, Grant Fritchey talks about the two paths to expertise for database professionals and why it’s hard to really know if someone is an expert.
2020-01-17
415 reads
Today Kendra discusses the advantages of using a command line interface for Git.
2020-01-16
422 reads
Grant discusses the need for password managers to help prevent security issues between different accounts.
2020-01-15
269 reads
Today Kendra talks about two of the online options used when working with indexes.
2020-01-14
346 reads
2020-01-13
269 reads
2020-01-11
288 reads
2020-01-10
306 reads
Cowboy coding can be a problem, and in a case Steve talks about, a temptation for someone to get more work.
2020-01-08
513 reads
Steve thinks one of the ways you can stand out with your resume or CV is by writing well and attracting the attention of hiring managers.
2020-01-07
176 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
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