query to retrive the employees whose sal is greater than avg
sal
Answer Posted / swastik
SELECT Sal
FROM Emp
WHERE Sal >
(
SELECT AVG(Sal)
FROM Emp
);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which is faster union or join?
what happens if you no create privilege in a database? : Sql dba
Why are aggregate functions called so?
What is sequence in sql?
What is difference between sql and excel?
Can we write dml inside a function in sql server?
Which command is used to delete a package?
Does sql profiler affect performance?
Is nosql relational?
What is meant by <> in sql?
What is denormalization in a database?
How does left join work in sql?
how can we transpose a table using sql (changing rows to column or vice-versa) ? : Sql dba
Explain the update statement in sql
Define commit, rollback and savepoint?