Skip to content

Commit ac26407

Browse files
authored
Update get-started-analyze-sql-on-demand.md
1 parent 162b3f3 commit ac26407

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/synapse-analytics/get-started-analyze-sql-on-demand.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ In this section, you'll use a serverless SQL pool to analyze NYC Taxi data in an
3131
1. Paste the following code into the script.
3232

3333
```
34-
SELECT
35-
TOP100*
36-
FROM
37-
OPENROWSET(
38-
BULK     'https://azureopendatastorage.blob.core.windows.net/nyctlc/yellow/puYear=*/puMonth=*/*.parquet',
39-
FORMAT = 'parquet'
40-
) AS [result];
34+
SELECT
35+
TOP 100 *
36+
FROM
37+
OPENROWSET(
38+
BULK 'https://workspacename.dfs.core.windows.net/users/NYCTripSmall.parquet',
39+
FORMAT='PARQUET'
40+
) AS [result]
4141
```
4242
1. Click **Run**
4343

0 commit comments

Comments
 (0)