Latest Answer: select * from employe where salary > ( select avg(salary) from dept,employe where dept.deptno = employe.deptno); ...
Latest Answer: To Display even row numbers---------------------------select * from emp where (rowid,0) in (select rowid,mod(rownum,2) from emp ) To Display odd row numbers---------------------------select * from emp where (rowid,1) in (select rowid,mod(rownum,2) ...
Latest Answer: SQL> select distinct e.name,e.salary from employe e, employe a 2 where e.salary = a.salary and e.name != a.name;NAME SALARY---------- ----------MANI ...
In a table a column is having value like 'Steven Kovy'. without using concat() function and concatenate operator "||" how to display like 'Kovy Steven'
Latest Answer: /* * How do you view the last record added to a table? */Select Top 1 * from Emp Order By EmpID Desc ...
Latest Answer: The purpose of both the commands is different. Then how can you compare insert and delete performane? ...
Latest Answer: Yes.. Using execute immediate which executes dynamic sql and pl/sql ...
How to give select privilege on all the objects owned by an user(say user1) to another user say(user2) using a single sql statement?
Latest Answer: The Oracle9i database offers join syntax that is SQL: 1999 Compliant. Prior to release 9i, the join syntax was different from the ANSI standards. The new SQL: 1999 Compliant join syntax does not offer any performance benefits over the Oracle proprietary ...
Explain the differences between cost-based optimizer and Rule-based optimizer ? Why DB2, Sybase is cost based and SQL, Oracle are Rule Based Optimisers ?
View page << Previous 1 2 3 [4] 5 6 7 8 9 10 Next >>

Go Top