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