oracle in 函数
Posted 唐僧还在拜佛求经路。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle in 函数相关的知识,希望对你有一定的参考价值。
IN操作符
select * from scott.emp where empno=7369 or empno=7566 or empno=7788 or empno=9999;
select * from scott.emp where empno IN (7369,7566,7788,9999);
select * from scott.emp where NOT IN (7369,7566,7788,9999); 相反
复习:
找出佣金高于薪金的百分之60的员工。
select * from scott.emp where comm>sal*0.6;
以上是关于oracle in 函数的主要内容,如果未能解决你的问题,请参考以下文章