Merge pull request #26354 from taosdata/docs/TD-30841

docs: add example for insert from file (win)
This commit is contained in:
wade zhang 2024-07-02 09:40:03 +08:00 committed by GitHub
commit 5481427446
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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)
```