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
List the various privileges that a user can grant to another user?
What is java sql package?
What is the difference between database trigger and stored procedure?
What are two statement types in sql?
What are dml commands?
explain mysql aggregate functions. : Sql dba
Why do we use triggers?
Which sorts rows in sql?
what are all the different types of indexes? : Sql dba
What is sql not null constraint?
Can we use having without group by in sql?
what are the 'mysql' command line arguments? : Sql dba
Why do we use view in sql?
Where can I learn sql for free?
Show code of a cursor for loop.