📄 temprestrictions.out
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -