2014-06-17
225 reads
2014-06-17
225 reads
As an employee, are you willing to pitch in for things that aren't a normal part of your job? Today we have Andy Warren notes that he has kitchen duty at work.
2014-06-16
212 reads
2014-06-12
656 reads
2014-06-11
649 reads
When we focus on negative things we get more negative. Be thankful for something positive.
2014-06-10
173 reads
2014-06-09
179 reads
Phil Factor ponders why improvements to source control and versioning so often lag behind the pace of progress in development as a whole.
2014-06-02
149 reads
David Poole looks at the interactions of technology across generations in this guest editorial.
2014-06-02
238 reads
2014-05-30
348 reads
Manual deployments and configuration of software is akin to creating works of art. Not exactly what Steve Jones would like to see if we are to practice software engineering.
2014-05-29
103 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