Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix issues
  • Loading branch information
huaxingao committed Oct 21, 2019
commit 14e92a922a0f05a6ab21c2b406b6cd2735171ba5
4 changes: 2 additions & 2 deletions docs/sql-ref-syntax-dml-load.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ license: |
---

### Description
The `LOAD DATA` statement can be used to load data from a file into a table, or into a partition in the table. The target table must not be temporary. A partition spec must be provided if and only if the target table is partitioned. The `LOAD DATA` statement is only supported for tables created using the Hive format.
`LOAD DATA` loads data from a file into a non-temporary table, or into a partition therein. A partition spec should be specified whenever the target table is partitioned. The `LOAD DATA` statement can only be used with tables created using the Hive format.

### Syntax
{% highlight sql %}
Expand Down Expand Up @@ -52,4 +52,4 @@ One or more partition column name and value pairs.
If specified, it causes the `INPATH` to be resolved against the local file system, instead of the default file system, which is typically distributed storage.

##### ***OVERWRITE***:
If specified, existing data in the table is overwritten. Otherwise, new data is appended to the table.
By default, new data is appended to the table. If `OVERWRITE` is used, the table is instead overwritten with new data.