Skip to content

Commit 23f563e

Browse files
author
Saveen Reddy
authored
Update get-started.md
1 parent 4df5b18 commit 23f563e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

articles/synapse-analytics/get-started.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -243,15 +243,13 @@ Run the the following code in a notebook. It creates a CSV and parquet data in t
243243
* Run the cell to analyze the parquet file with spark
244244
* Right-click on the parquet file inside, and select New **SQL script > SELECT TOP 100 rows**, it will create a notebook with a cell like this:
245245
```
246-
SELECT
247-
TOP 100 *
248-
FROM
249-
OPENROWSET(
246+
SELECT TOP 100 *
247+
FROM OPENROWSET(
250248
BULK 'https://contosolake.dfs.core.windows.net/users/NYCTaxi/PassengerCountStats.parquet/part-00000-1f251a58-d8ac-4972-9215-8d528d490690-c000.snappy.parquet',
251249
FORMAT='PARQUET'
252250
) AS [r];
253-
254251
```
252+
255253
* The script will be attached to **SQL on-demand** run the script. Notice that it infers the schema from the parquet file.
256254
257255

0 commit comments

Comments
 (0)