query to retrive the employees whose sal is greater than avg
sal
Answer Posted / badchip
select ename,esal from emp_mast where esal > (select avg
(esal) from emp_mast group by esal);
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Can you upgrade sql express to full sql?
What is an intersect?
Which command is used to call a stored procedure?
explain primary keys and auto increment fields in mysql : sql dba
Determine if oracle date is on a weekend?
What is the maximum size of sqlite database?
How does stored procedure reduce network traffic?
What is raw datatype in sql?
Which sql statement is used to delete data from a database?
What is oracle pl sql developer?
how to use myisamchk to check or repair myisam tables? : Sql dba
What is the use of <> sql?
What do you mean by stored procedures? How do we use it?
Can we debug stored procedure?
How do you add a column to a table?