Skip to content

Commit e15f5f2

Browse files
authored
Merge pull request #153868 from saveenr/patch-103
Update get-started-analyze-sql-on-demand.md
2 parents 8141902 + 554d059 commit e15f5f2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

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

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

0 commit comments

Comments
 (0)