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