标签:style http os sp on div ad ef as
--等值连接select dname, loc, empno, ename from emp a, dept b where a.deptno=b.deptno and b.deptno=20;--自连接select a.empno, a.sal, b.empno, b.ename, b.sal from emp a, emp b where a.mgr=b.empno and a.ename=‘SCOTT‘;--笛卡尔积select a||‘+‘||b||‘=‘||(a+b) as "3*3加法表" from (select rownum a from all_objects where rownum<4), (select rownum b from all_objects where rownum<4);--内连接select empno, ename, sal, salgrade.grade from emp, salgrade where emp.deptno=10 and emp.sal between salgrade.losal and salgrade.hisal;select empno, ename, sal, salgrade.grade from emp inner join salgrade on emp.deptno=10 and emp.sal between salgrade.losal and salgrade.hisal;--反连接select * from emp where deptno not in (select deptno from dept where loc in(‘NEW YORK‘, ‘DALLAS‘));select * from dept where deptno not in (select deptno from emp);--半连接select * from emp a where exists (select 1 from dept b where loc=‘NEW YORK‘ and a.deptno=b.deptno);select a.* from emp a, dept b where loc=‘NEW YORK‘ and a.deptno=b.deptno;select * from dept a where exists (select 1 from emp b where a.deptno=b.deptno and b.sal>2900);select a.* from dept a , emp b where a.deptno=b.deptno and b.sal>2900;select distinct a.* from dept a , emp b where a.deptno=b.deptno and b.sal>2900;
标签:style http os sp on div ad ef as
原文地址:http://www.cnblogs.com/mahun/p/4126067.html