We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33d820d commit eddc9bfCopy full SHA for eddc9bf
dir.yaml
@@ -197,6 +197,9 @@
197
- title_en: Math
198
title_cn: 数学函数
199
path: sql-reference/math
200
+ - title_en: Gap Fill
201
+ title_cn: 插值
202
+ path: sql-reference/gap_fill
203
#- title_en: String
204
# title_cn: 字符串函数
205
# path: sql-reference/string
zh_CN/sql-reference/gap_fill.md
@@ -21,6 +21,9 @@
21
- 使用给定值填充:`fill_value(<aggregate_col>, <value>)`。
22
3. 使用 WHERE 从句给定查询的时间范围。
23
- 时间范围必须为有限范围,即有限的起始时间戳与有限的结束时间戳。
24
+ - 注意,插值的起始时间戳为 `min(p_min, d_min)`,终止时间戳为 `max(p_max, d_max)`。
25
+ - `p_min` 与 `p_max` 分别为查询条件中的时间范围的下界与上界。
26
+ - `d_min` 与 `d_max` 分别为原始数据中最小时间戳与最大时间戳。
27
28
语法示例:
29
0 commit comments