Office 365 technology – What powers Power BI in Office 365? #0365 #powerbi
Power BI for Office 365 is a new self-service business intelligence (BI) offering enabling businesses to gain insights from their...
2014-02-11
732 reads
Power BI for Office 365 is a new self-service business intelligence (BI) offering enabling businesses to gain insights from their...
2014-02-11
732 reads
Rob’s got a good post called What is Power Pivot’s #1 Competitor? which has some great comments, as well as...
2014-02-11
690 reads
The Genealogy of Baseball Teams chronicles the origin and evolution of baseball teams from every major league from the inception...
2014-02-11
355 reads
2014-02-11
255 reads
At our last MVP summit, I sat in on a session on PowerQuery. Our presenter, who is pretty passionate about...
2014-02-11
329 reads
Hey Guys!
I have come across this amazing EXCEL Championship being organized by dezyre.com. They are offering an amazing cash prize!
from...
2014-02-10
323 reads
Toyota may have plans to end production of the FJ Cruiser but the aftermarket continues to bring out new off...
2014-02-09
563 reads
Satya Nadella’s appointment as the new CEO of Microsoft, coupled with the news that Bill Gates would step down as...
2014-02-09
369 reads
Analyst firm RedMonk periodically publishes rankings of the Top 20 programming languages, as measured by activity on StackOverflow and number...
2014-02-09
874 reads
This week, we released Management Packs for SQL Server 2008 and 2012 Analysis Services. The corresponding downloads are available at:
System ...
2014-02-09
684 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