Weekly reading 10#
New week has started. 1/2 of the Coding Family Team has exams at school today. We were all busy last weeks…. But now it ends! And this must be...
2019-04-08
28 reads
New week has started. 1/2 of the Coding Family Team has exams at school today. We were all busy last weeks…. But now it ends! And this must be...
2019-04-08
28 reads
Good morning, today is 1st April. Maybe it is a good time to say that for example SQL Server was acquired by its main competitor on the market? No,...
2019-03-31
79 reads
Good day! Good week! Let’s start it with some news form the Data Platform world!
SQL Internals – Physical Table Structure under...
2019-03-25
230 reads
It is MVP Summit time! I have not made it this year unfortunately. I hope all MVPs have a greate...
2019-03-18
347 reads
We were enjoying Thursday on conference in Warsaw. We have arrived pretty lately but easily saw the awesome atmosphere there....
2019-03-13
256 reads
Coding Family is late this week with the blog post! It is due to heavy storms and wind! It started...
2019-03-11
236 reads
Last week was busy the busy one. The SQL Bits, SQL Server CTP 2.3 and other great stuff have come...
2019-03-04
342 reads
Here it is! The second article about Python! This time I have described how tou use simple conditional code in...
2019-02-26
819 reads
It is spring around the corner but we do not know where the corner is. All I know it is...
2019-02-25
121 reads
I have just done my first interview! The very special guest was Uwe Ricken!
My idea for the interview was...
2019-02-19
118 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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