query to retrive the employees whose sal is greater than avg
sal
Answer Posted / swapna
select ename from emp where sal>(select avg(sal) from emp);
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
what are the different type of sql's statements ? : Sql dba
Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?
list out some tools through which we can draw e-r diagrams for mysql. : Sql dba
Explain scalar functions in sql?
Can you have more than one key in a database?
How do rank () and dense_rank () differ?
What does dml mean?
What is time based sql injection?
Why sql query is slow?
how to get @@error and @@rowcount at the same time? : Sql dba
Is vs as in pl sql?
What is clause in sql?
Is sql a backend language?
What is the difference between truncate and drop statements?
Can %notfound return null after a fetch?