Countdown to PASS Summit 2012 – 4 to Go – SQL Karaoke, Really?
Four days to the Summit. Will you be singing? Last year was my first time attending SQL Karaoke. While I...
2012-11-02
761 reads
Four days to the Summit. Will you be singing? Last year was my first time attending SQL Karaoke. While I...
2012-11-02
761 reads
Just 5 days to Summit kick off. Today’s discussion is about communities within the community. That’s right. There is more...
2012-11-01
583 reads
Getting closer, 6 days to Summit 2012! Today, I just have to give kudos out to Magenic, my current employer....
2012-10-31
1,231 reads
Seven days, one full week, until opening night at Summit 2012. Getting excited yet? In my first post of the...
2012-10-30
1,242 reads
Eight days to go. So after going to my first conference, I was surprised that I did not know more...
2012-10-29
1,207 reads
We are less than ten days to the start of PASS Summit 2012. I thought it would be fun to...
2012-10-28
588 reads
Over the past few years, I have used Windows Live Writer to create my blog entries on WordPress. Given the...
2012-10-26
2,780 reads
In the 7th article of this series, I will discuss how to manage your partitions with XMLA. We will be...
2012-10-10
633 reads
I recently completed a series of blog posts on www.lessthandot.com on T-SQL Window functions. The enhancements to SQL Server 2012...
2012-09-26
900 reads
In this post, I will progressively go through processing a partition from full process, to incremental process, and finally to...
2012-09-19
801 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