描述:
删除influxdb2数据库中的数据。
语法:
influx2_delete(hd,beginTime,endTime,deleteStatement,bucket,organization)
备注:
外部库函数,外部库的使用请参考《外部库使用指南》。
删除influxdb2数据库中的数据,仅供InfluxDB版本为2.x时使用。
参数:
hd |
连接对象。 |
beginTime |
起始时间。 |
endTime |
结束时间。 |
deleteStatement |
查询语句。 |
返回值:
删除成功或失败的字符串
示例:
|
A |
1 |
=influx2_open("http://localhost:8086?org=esprocOrg&bucket=test1&token=ZHL...fxWg==") |
2 |
=influx2_delete(A1,"2022-03-30 01:01:01","2022-03-31 01:01:01","","test1","esprocOrg") |
3 |
=insert_close(A1) |