Skip to content

Commit bfeeca0

Browse files
authored
Merge pull request #111612 from jovanpop-msft/patch-153
Update quickstart-sql-on-demand - simplify CSV sample
2 parents 64a7aab + d34019d commit bfeeca0

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

articles/synapse-analytics/quickstart-sql-on-demand.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,14 @@ FROM OPENROWSET
9393
(
9494
BULK 'https://sqlondemandstorage.blob.core.windows.net/csv/population/*.csv'
9595
, FORMAT = 'CSV'
96-
, FIELDTERMINATOR =','
97-
, ROWTERMINATOR = '\n'
9896
)
9997
WITH
10098
(
101-
[country_code] VARCHAR (5) COLLATE Latin1_General_BIN2
102-
, [country_name] VARCHAR (100) COLLATE Latin1_General_BIN2
103-
, [year] smallint
104-
, [population] bigint
105-
) AS [r]
99+
country_code VARCHAR (5)
100+
, country_name VARCHAR (100)
101+
, year smallint
102+
, population bigint
103+
) AS r
106104
WHERE
107105
country_name = 'Luxembourg' AND year = 2017
108106
```

0 commit comments

Comments
 (0)