
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?
