Top 35 SQL Interview Question asked in Oracle Apps Technical Interview or SQL TOP 35 Frequently asked question in Technical Interview
Top 35 SQL Interview Question asked in Oracle Apps R12 Technical Interview or SQL TOP 35 Frequently asked question in Technical Interview Frequently asked Technical (SQL) question in Oracle apps r12 -: 1. To find EVEN NUMBER select * from emp where rowid in (select decode(mod(rownum,2),0,rowid, null) from emp); 2. To find EVEN NUMBER select * from emp where rowid in (select decode(mod(rownum,2),0,null ,rowid) from emp); 3. To find the 5th MAX salary select distinct sal from emp e1 where 5 = (select count(distinct sal) from emp e2 where e1.sal <= e2.sal); 4. To find the 9th MIN salary in the emp table. select distinct sal from emp e1 where 9 = (select count(distinct sal) from emp e2 where e1.sal >= e2.sal); 5. How can we use Rownum function/How can get output for first 10-row output select * from emp where rownum <= &Enter_row_num; 6. How can get output for Las...