temprestrictions.sql
来自「derby database source code.good for you.」· SQL 代码 · 共 12 行
SQL
12 行
-- Tests for temporary restrictions in the language-- create a tablecreate table t1(c1 int);-- No aggregates in the where clause-- (Someday will will allow correlated aggregates ...)select c1 from t1 where max(c1) = 1;-- drop the tabledrop table t1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?