This Week in Data – Episode 3 (What is the Internet of Things (IoT)?)
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-07
853 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-07
853 reads
Welcome back to another episode of This Week In Data! In our first episode,Adam and Devin debated the value of...
2016-08-31
771 reads
In this module you will learn how to use the Bullet Chart Power BI Custom Visual. The Bullet Chart serves...
2016-08-30 (first published: 2016-08-19)
2,738 reads
In this module you will learn how to use the Tornado Power BI Custom Visual. The Tornado allows you to...
2016-08-29
1,074 reads
We know you you’ve been dying to know, what is TWID? Drumroll please…. We’re excited to announce the launch of...
2016-08-24
483 reads
In this module you will learn how to use the Aster Plot Power BI Custom Visual. The Aster Plot is...
2016-08-22
1,084 reads
In this module you will learn how to use the Calendar Visualization Power BI Custom Visual. The Calendar Visualization is...
2016-08-16 (first published: 2016-08-10)
2,577 reads
In this module you will learn how to use the Chord Power BI Custom Visual. Chord diagrams show directed relationships...
2016-08-02 (first published: 2016-07-25)
2,292 reads
In this module you will learn how to use the Card with States Power BI Custom Visual. The Card with...
2016-08-01
1,213 reads
Today marks one years since Power BI was officially released. It’s been an amazing ride and I’d like to thank...
2016-07-24
496 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