⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 precedence.sql

📁 derby database source code.good for you.
💻 SQL
字号:
-- this tests precedence of operators.-- test precedence of operators other than and, or, and not-- that return boolean.-- expect 'true' row:create table t1(c11 int);insert into t1 values(1);select c11 from t1 where 1 in (1,2,3) = (1=1);--select c11 from t1 where 'acme widgets' like 'acme%' in (1=1);select c11 from t1 where 1 between -100 and 100 is not null;--select c11 from t1 where exists(select * from (values 1) as t) not in (1=2);

⌨️ 快捷键说明

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