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
What is clustered index sql?
Are sql database names case sensitive?
How can I make sql query run faster?
Which function is used to return remainder in a division operator in sql?
What are different types of queries in sql?
Explian rowid, rownum? What are the psoducolumns we have?
What does rownum mean in sql?
What is delimiter in pl sql?
What is the life of an sql statement?
What is sql data?
What is scope of pl sql developer in future?
Can we commit in trigger?
How do I edit a stored procedure?
what is a unique key ? : Sql dba
what is cursor. write example of it. What are the attributes of cursor.