📄 group_err.sql.out
字号:
QUERY: create table G_ERR (x int4, y int4, z int4);QUERY: select x from G_ERR group by y;x -- QUERY: select x, sum(z) from G_ERR group by y;WARN:parser: illegal use of aggregates or non-group column in target listQUERY: select x, count(x) from G_ERR;WARN:parser: illegal use of aggregates or non-group column in target listQUERY: select max(count(x)) from G_ERR;WARN:parser: aggregate can only be applied on an attributeQUERY: select x from G_ERR where count(x) = 1;WARN:parser: aggregates not allowed in WHERE clauseQUERY: create table H_ERR (a int4, b int4);QUERY: select y, a, count(y), sum(b)from G_ERR, H_ERRwhere G_ERR.y = H_ERR.a group by y;WARN:parser: illegal use of aggregates or non-group column in target listQUERY: drop table G_ERR, H_ERR;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -