是否有可能在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