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 myisam? : Sql dba
How to make a copy values from one column to another in sql?
Can two tables have same primary key?
What is the difference between a query and a report?
What are dml commands?
What is the difference between database trigger and stored procedure?
What is left join in postgresql?
What is sql procedures and functions?
how can you see all indexes defined for a table? : Sql dba
How do I run a sql query?
when MSQL8.0 is in market
What is identity column in sql server?
What is sql performance tuning?
How many types of normalization are there?
What is delimiter in pl sql?