Skip to content

Commit 161734e

Browse files
authored
fix having example description in tablemodel (#868)
1 parent cf7b3c8 commit 161734e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/zh/UserGuide/Master/Table/SQL-Manual/Having-Clause.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ It costs 0.063s
6565

6666
### 2.2 示例 2:计算每个设备的每小时平均温度并过滤
6767

68-
查询将计算 `table1` 表中每个设备每小时的平均温度,并过滤掉那些平均温度低于 27.2 的设备。
68+
查询将计算 `table1` 表中每个设备每小时的平均温度,并过滤掉那些平均温度低于 85.0 的设备。
6969

7070
```sql
7171
SELECT date_bin(1h, time) as hour_time, device_id, AVG(temperature) as avg_temp

src/zh/UserGuide/latest-Table/SQL-Manual/Having-Clause.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ It costs 0.063s
6565

6666
### 2.2 示例 2:计算每个设备的每小时平均温度并过滤
6767

68-
查询将计算 `table1` 表中每个设备每小时的平均温度,并过滤掉那些平均温度低于 27.2 的设备。
68+
查询将计算 `table1` 表中每个设备每小时的平均温度,并过滤掉那些平均温度低于 85.0 的设备。
6969

7070
```sql
7171
SELECT date_bin(1h, time) as hour_time, device_id, AVG(temperature) as avg_temp

0 commit comments

Comments
 (0)