docs: add example for insert from file (win)

This commit is contained in:
Shungang Li 2024-07-01 18:50:50 +08:00
parent 5cd8f62a65
commit 756c500eef
1 changed files with 7 additions and 1 deletions

View File

@ -52,8 +52,14 @@ taos> DESCRIBE d1001
那么可以用如下命令导入数据:
```sql
taos> insert into d1001 file '~/data.csv';
taos> insert into d1001 file '~/data.csv'; # For Linux / Mac
Query OK, 9 row(s) affected (0.004763s)
```
```sql
taos> insert into d1001 file 'E:\\taos\\data.csv'; # For Windows
Query OK, 9 row(s) affected (0.004763s)
```