CnosDB でタグが何も返らないことを期待する
Q&A
タグを当てにしようとしているときに、なぜ CnosDB がそのような動作を示すのか混乱しています。エラーや情報は返されません。
ドキュメントのサンプル データベースを使用しています。
データは次のようになります。
select * from test_air
name: test_air
time pressure station temperature visibility
2022-07-01T08:42:04.4103282Z 75 XiaoMaiDao 79 68
2022-07-01T08:42:09.6582015Z 78 LianYunGang 63 71
2022-07-01T08:43:24.5802497Z 79 LianYunGang 63 71
2022-07-01T08:43:24.6005666Z 79 LianYunGang 53 71
2022-07-01T08:43:24.6228182Z 90 LianYunGang 63 71
2022-07-01T08:43:24.6451171Z 75 XiaoMaiDao 79 78
2022-07-01T08:43:25.2744992Z 75 XiaoMaiDao 77 78
2022-07-05T11:34:04.8420635Z XiaoMaiDao 70 85
そして、私は今すべての列を数えています:
select count(*) from test_air
name: test_air
time count_pressure count_temperature count_visibility
1970-01-01T00:00:00Z 7 8 8
そして、私はフィールドのカウントを行っています:
select count(*) from test_air
name: test_air
time count_pressure count_temperature count_visibility
1970-01-01T00:00:00Z 7 8 8
そして、私は別のフィールドのカウントを行っています:
select count(temperature) from test_air
name: test_air
time count
1970-01-01T00:00:00Z 8
ただし、タグをカウントするための情報は返しません。
select count(station) from test_air
タグ セットには XiaoMaiDao と LianYunGang の 2 つの値があるため、2 を返すべきではありませんか?