Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
0887e5e3
提交
0887e5e3
authored
9月 18, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update documentation
上级
e797e868
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
22 行增加
和
6 行删除
+22
-6
help.csv
h2/src/docsrc/help/help.csv
+21
-5
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
0887e5e3
...
@@ -2534,9 +2534,18 @@ SELECT * FROM (VALUES(1, 'Hello'), (2, 'World')) AS V;
...
@@ -2534,9 +2534,18 @@ SELECT * FROM (VALUES(1, 'Hello'), (2, 'World')) AS V;
"
"
"Other Grammar","Window specification","
"Other Grammar","Window specification","
([PARTITION BY expression [,...]] [ORDER BY order [,...]])
([PARTITION BY expression [,...]] [ORDER BY order [,...]]
[RANGE BETWEEN {
UNBOUNDED PRECEDING AND CURRENT ROW
|CURRENT ROW AND UNBOUNDED FOLLOWING
|UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING
}])
","
","
A window specification for a window function or aggregate.
A window specification for a window function or aggregate.
Window frame clause (RANGE) is currently supported only in aggregates and
FIRST_VALUE(), LAST_VALUE(), and NTH_VALUE() window functions.
Window functions are currently experimental in H2 and should be used with caution.
Window functions are currently experimental in H2 and should be used with caution.
They also may require a lot of memory for large queries.
They also may require a lot of memory for large queries.
","
","
...
@@ -5157,13 +5166,16 @@ LAST_VALUE(value) [{RESPECT|IGNORE} NULLS] OVER windowSpecification
...
@@ -5157,13 +5166,16 @@ LAST_VALUE(value) [{RESPECT|IGNORE} NULLS] OVER windowSpecification
Returns the last value in a window.
Returns the last value in a window.
If IGNORE NULLS is specified null values are skipped and the function returns last non-null value before them, if any;
If IGNORE NULLS is specified null values are skipped and the function returns last non-null value before them, if any;
if there is no non-null value it returns NULL.
if there is no non-null value it returns NULL.
Note that the last value is actually a value in the current row.
Note that the last value is actually a value in the current row
if window frame is not specified
.
Window functions are currently experimental in H2 and should be used with caution.
Window functions are currently experimental in H2 and should be used with caution.
They also may require a lot of memory for large queries.
They also may require a lot of memory for large queries.
","
","
SELECT LAST_VALUE(X) OVER (ORDER BY ID), * FROM TEST;
SELECT LAST_VALUE(X) OVER (ORDER BY ID), * FROM TEST;
SELECT LAST_VALUE(X) IGNORE NULLS OVER (PARTITION BY CATEGORY ORDER BY ID), * FROM TEST;
SELECT LAST_VALUE(X) IGNORE NULLS OVER (
PARTITION BY CATEGORY ORDER BY ID
RANGE BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING
), * FROM TEST;
"
"
"Functions (Window)","NTH_VALUE","
"Functions (Window)","NTH_VALUE","
...
@@ -5172,15 +5184,19 @@ OVER windowSpecification
...
@@ -5172,15 +5184,19 @@ OVER windowSpecification
","
","
Returns the value in a row with a specified relative number in a window.
Returns the value in a row with a specified relative number in a window.
Relative row number must be positive.
Relative row number must be positive.
If FROM LAST is specified rows a counted backwards from the
curren
t row.
If FROM LAST is specified rows a counted backwards from the
las
t row.
If IGNORE NULLS is specified rows with null values in selected expression are skipped.
If IGNORE NULLS is specified rows with null values in selected expression are skipped.
If number of considered rows is less than specified relative number this function returns NULL.
If number of considered rows is less than specified relative number this function returns NULL.
Note that the last row is actually a current row if window frame is not specified.
Window functions are currently experimental in H2 and should be used with caution.
Window functions are currently experimental in H2 and should be used with caution.
They also may require a lot of memory for large queries.
They also may require a lot of memory for large queries.
","
","
SELECT NTH_VALUE(X) OVER (ORDER BY ID), * FROM TEST;
SELECT NTH_VALUE(X) OVER (ORDER BY ID), * FROM TEST;
SELECT NTH_VALUE(X) IGNORE NULLS OVER (PARTITION BY CATEGORY ORDER BY ID), * FROM TEST;
SELECT NTH_VALUE(X) IGNORE NULLS OVER (
PARTITION BY CATEGORY ORDER BY ID
RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING
), * FROM TEST;
"
"
"System Tables","Information Schema","
"System Tables","Information Schema","
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
0887e5e3
...
@@ -796,4 +796,4 @@ interior envelopes multilinestring multipoint packed exterior normalization awkw
...
@@ -796,4 +796,4 @@ interior envelopes multilinestring multipoint packed exterior normalization awkw
xym normalizes coord setz xyzm geometrycollection multipolygon mixup rings polygons rejection finite
xym normalizes coord setz xyzm geometrycollection multipolygon mixup rings polygons rejection finite
pointzm pointz pointm dimensionality redefine forum measures
pointzm pointz pointm dimensionality redefine forum measures
mpg casted pzm mls constrained subtypes complains
mpg casted pzm mls constrained subtypes complains
ranks rno dro rko precede cume reopens
ranks rno dro rko precede cume reopens
preceding unbounded
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论