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.
1 parent 74e80fc commit 768d005Copy full SHA for 768d005
docs/doc/30-reference/30-sql/10-dml/dml-copy-into-table.md
@@ -224,6 +224,16 @@ COPY INTO mytable
224
FROM 's3://mybucket/data.csv'
225
FILE_FORMAT = (type = 'CSV' field_delimiter = ',' record_delimiter = '\n' skip_header = 1) size_limit=10;
226
```
227
+
228
+`Parquet` file example:
229
+```sql
230
+COPY INTO mytable
231
+ FROM 's3://mybucket/data.parquet'
232
+ CONNECTION = (
233
+ ACCESS_KEY_ID = '<your-access-key-ID>'
234
+ SECRET_ACCESS_KEY = '<your-secret-access-key>')
235
+ FILE_FORMAT = (type = 'PARQUET');
236
+```
237
238
**Azure Blob storage**
239
@@ -236,4 +246,4 @@ COPY INTO mytable
246
ACCOUNT_NAME = '<account_name>'
247
ACCOUNT_KEY = '<account_key>'
248
)
-```
249
0 commit comments