Saturday 18 June 2011

Non-Equi Join


A join which contains an operator other than ‘=’ in the joins condition.
Ex: SQL> select empno,ename,job,dname,loc from emp e,dept d where e.deptno >     d.deptno;

No comments:

Post a Comment