English 中文(简体)
导出非 csv 格式数据, 参数“ 分隔符” 和“ 带_ 标题” 在 cnosdb 中无平均值
原标题:Export non-csv format data, parameters "delimiter" and "with_header" are meanless in cnosdb
  • 时间:2024-02-02 01:54:18
  •  标签:
  • cnosdb

当我使用 copy-into 语法将 json 文件的数据装入 cnosdb 时,我发现我可以提供 dederimater with_header 参数。 我认为这两个参数只应用于导入 csv 文件, 并且在其他文件格式中没有平均值。 对不对?

public ❯ copy into  test  from air file_format = (type =  json , delimiter =  @ , with_header = true);
+------+
| rows |
+------+
| 6    |
+------+
Query took 0.007 seconds.
问题回答

我已经用 CnosDB-v2.4.1 尝试了您的 sql 语句, 但它回应错误, 以显示 < code> delater 和_header 字段是 CSV 所特有 :

public ❯ copy into  test  from air file_format = (type =  json , delimiter =  @ , with_header = true);
422 Unprocessable Entity, details: {"error_code":"010003","error_message":"Semantic error: delimiter and with_header fields are specific to CSV"}




相关问题
导出数据目录为空

我用 cnosdb 图像拉起一个容器, 在数据库中写了一些数据, 然后连接到主机上的数据库并导出数据。 我发现主机数据目录是空的, 但是...

TypeError:‘NoneType’ object is not subscriptable

I encountered the error message "TypeError: NoneType object is not subscriptable" while using Python to access cnosdb. How can I solve this problem? My SQL statement is correct. If you ...

热门标签