1

是否可以在 influxQL 中获取自定义字符串作为 SELECT 查询的查询输出?

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

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

我试过这个:

> 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

我的预期结果如下:

time                 uuid1       uuid2                                id
----                ------------ -----------                          ---------------
1555321822616000000     "hai"    00000000-0000-0000-0000-000000000001 45337
4

0 回答 0