temprestrictions.out

来自「derby database source code.good for you.」· OUT 代码 · 共 13 行

OUT
13
字号
ij> -- Tests for temporary restrictions in the language-- create a tablecreate table t1(c1 int);0 rows inserted/updated/deletedij> -- No aggregates in the where clause-- (Someday will will allow correlated aggregates ...)select c1 from t1 where max(c1) = 1;ERROR 42903: Invalid use of an aggregate function.ij> -- drop the tabledrop table t1;0 rows inserted/updated/deletedij> 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?