Time Management: Strategies for CEOs and CFOs In the Midmarket
Time management resources for CEOs and CFOs
1. “An Approach To Developing People.”
One way to gain more time is to properly...
2014-02-12
349 reads
Time management resources for CEOs and CFOs
1. “An Approach To Developing People.”
One way to gain more time is to properly...
2014-02-12
349 reads
Following is a list (in alphabetical order) of top domains related to analytics, data science or big data, based on...
2014-02-11
446 reads
AN EIGHT-STEP APPROACH TO A BIG DATA ANALYTICS PROJECT
We’ve created a high-level list that speaks to 8 different steps to...
2014-02-11
754 reads
Since the beginning of the information age, enterprises have relied on processing data to gain insights and make business decisions....
2014-02-11
1,294 reads
Large enterprises looking for ways to modernize and migrate a portfolio of business applications to cloud will need to adopt...
2014-02-11
542 reads
f you’re planning to use HDFS Explorer with the Hortonworks Sandbox or Cloudera VM, you’ll need to define your Hadoop...
2014-02-11
1,494 reads
Since the initial beta release of Cloudera Impala more than one year ago (October 2012), we’ve been committed to regularly...
2014-02-11
481 reads
HCatalog makes Hive metadata available to users of other Hadoop tools like Pig, MapReduce and Hive. It provides connectors for...
2014-02-11
1,309 reads
2014-02-11
171 reads
2014-02-11
206 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