We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 64a7aab + d34019d commit bfeeca0Copy full SHA for bfeeca0
articles/synapse-analytics/quickstart-sql-on-demand.md
@@ -93,16 +93,14 @@ FROM OPENROWSET
93
(
94
BULK 'https://sqlondemandstorage.blob.core.windows.net/csv/population/*.csv'
95
, FORMAT = 'CSV'
96
- , FIELDTERMINATOR =','
97
- , ROWTERMINATOR = '\n'
98
)
99
WITH
100
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]
+ country_code VARCHAR (5)
+ , country_name VARCHAR (100)
+ , year smallint
+ , population bigint
+ ) AS r
106
WHERE
107
country_name = 'Luxembourg' AND year = 2017
108
```
0 commit comments