自定义字符串作为查询输出

时间:2019-06-06 19:49:04

标签: influxdb influxql

是否有可能在influxQL中将自定义字符串作为SELECT查询的查询输出?

en_core_web_lg.load()

我想在查询输出中得到“ hai”而不是###。

我尝试了这个:

> select time, uuid1, uuid2, id from mydb."autogen".data limit 1;
name: measurement1
time                 uuid1       uuid2                                id
----                ------------ -----------                          ---------------
1555321822616000000 ###    00000000-0000-0000-0000-000000000001       45337

我的预期结果如下:

> select time, uuid1 as "hai", uuid2, id from mydb."autogen".data limit 1;
name: measurement1
time                 uuid1       uuid2                                id
----                ------------ -----------                          ---------------
1555321822616000000              00000000-0000-0000-0000-000000000001 45337

0 个答案:

没有答案