How Far Have You Traveled for a SQL Saturday?
This Friday Steve Jones talks SQL Saturdays and asks how far you've traveled to attend one.
2016-07-29
97 reads
This Friday Steve Jones talks SQL Saturdays and asks how far you've traveled to attend one.
2016-07-29
97 reads
Gathering too much data isn't always helpful, and doesn't necessarily help you make better decisions. However, that's up to you to decide how much is too much.
2016-07-28
76 reads
Today Steve Jones notes that the ability to search if invaluable as the amount of information, or even objects, we deal with grows.
2016-07-27
93 reads
Releasing software is stressful, and as Steve Jones notes today, can cause bankruptcy if you don't have a solid process.
2016-07-26
93 reads
2016-07-25
77 reads
Today Steve Jones wonders why we don't unit test more, especially for databases.
2016-07-25
124 reads
Today we have a guest editorial from Ben Kubicek as Steve is traveling out of town. I discovered I had stayed at a job about two years too long. Why was that?
2016-07-22
203 reads
The march to the cloud is ongoing and Steve Jones says you should prepare yourself. Even if your company doesn't move.
2016-07-20
101 reads
Today Steve Jones talks about the problem of having code that people are afraid to change or deploy.
2016-07-19
132 reads
Today Steve Jones notes that back doors could be inserted into chips, which would be a huge problem.
2016-07-18
94 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