consider that we r having table name emp.... now the question is 1.how should we print the odd rows from that table? 2.how should we print the rows where comm=NULL.
RE: consider that we r having table name emp....now the question is 1.how should we print the odd rows from that table?2.how should we print the rows where comm=NULL.Reply ASAP
select e.* from( select rownum rn ename sal from emp) e where mod(rn 2) 0