CnosDB
@CnosDB (CnosDB)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

CnosDB でタグが何も返らないことを期待する

タグを当てにしようとしているときに、なぜ 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 を返すべきではありませんか?

0

1Answer

This answer has been deleted for violation of our Terms of Service.

Your answer might help someone💌