ETL #73–NULL or NOT NULL and SQL Interview Questions
Today is the day after Thanksgiving. There are many things to be thankful so I decided to write a short...
2016-11-25
629 reads
Today is the day after Thanksgiving. There are many things to be thankful so I decided to write a short...
2016-11-25
629 reads
Dynamically totaling child members
Putting the dynamic totals on top or at the bottom can be a trivial or a big...
2016-03-31
1,202 reads
After I posted this blog MDX Cookbook is a popular book, I received another email from my MDX book publisher.
...
2016-03-24
385 reads
We use NON EMPTY key word on the rows axis to remove rows with NULL values. It works only when all...
2016-04-04 (first published: 2016-03-24)
2,442 reads
You might have seen error message like this from a SQL job that pulls data from an OLAP cube using...
2016-03-14 (first published: 2016-03-08)
2,237 reads
I cannot believe that I have not posted any blog since May 2015! It’s been a busy few months for...
2016-02-16
1,068 reads
There are many great tips in MDX with SSAS 2012 Cookbook
The book MDX with SSAS 2012 Cookbook has many great...
2015-05-14
1,659 reads
Why a seemingly innocent WHERE clause can cause large amount of data missing
In the previous post, ETL #71–Your data can...
2015-05-12 (first published: 2015-05-03)
6,247 reads
Validations at end of ETL indicate missing data
At the end of each ETL job, I always run some sort of...
2015-04-24
863 reads
The secrete SQLFile.sql
We are all so used to clicking on the New Query icon (or the keyboard shortcut Ctrl+N). We know it...
2015-02-02 (first published: 2015-01-27)
13,433 reads
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
By HeyMo0sh
Working in DevOps long enough teaches you two universal truths: That’s exactly why I...
Comments posted to this topic are about the item Fun with JSON II
Comments posted to this topic are about the item Changing Data Types
Comments posted to this topic are about the item Answering Questions On Dropped Columns
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 t1.[key] AS row,
t2.*
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t1
CROSS APPLY OPENJSON(t1.value) t2; See possible answers