query to retrive the employees whose sal is greater than avg
sal
Answer Posted / gop
SELECT sal FROM EMPLOYEES WHERE sal>(SELECT avg(sal) FROM
EMPLOYEES);
| Is This Answer Correct ? | 47 Yes | 6 No |
Post New Answer View All Answers
what is the stuff function and how does it differ from the replace function? : Sql dba
What are the set operators in sql?
what is an alias command? : Sql dba
How do you copy a table in sql?
How do you write a complex sql query?
What is the purpose of primary key?
How can you save or place your msg in a table?
Is left join faster than join?
Can we join two tables without common column?
What is a table partition?
what is the command used to fetch first 5 characters of the string? : Sql dba
Is subquery faster than join?
What are the datatypes available in pl/sql ?
how to implement one-to-one, one-to-many and many-to-many relationships while designing tables? : Sql dba
What is a natural join sql?