
Ultimate access to all questions.
You have an Azure subscription that contains an Azure Synapse Analytics serverless SQL pool.
You execute the following query.
SELECT TOP 100 *
FROM OPENROWSET(
BULK 'https://datalake.blob.core.windows.net/container/folder/*.parquet',
FORMAT = 'PARQUET'
) AS [result]
SELECT TOP 100 *
FROM OPENROWSET(
BULK 'https://datalake.blob.core.windows.net/container/folder/*.parquet',
FORMAT = 'PARQUET'
) AS [result]
Where are the rows returned by the query stored?

A
in a file in a data lake
B
in a relational database
C
in a global temporary table
D
in a session temporary table