docs: fix taosbenchmark query sql (#15874)

This commit is contained in:
Yang Zhao 2022-08-09 10:04:44 +08:00 committed by GitHub
parent 0ee815c6f3
commit b80d0e4eca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ taos> select avg(current), max(voltage), min(phase) from test.meters;
查询 location="California.SanFrancisco" 的记录总条数:
```sql
taos> select count(*) from test.meters where location="California.SanFrancisco";
taos> select count(*) from test.meters where location="San Francisco";
```
查询 groupId=10 的所有记录的平均值、最大值、最小值等: