query to retrive the employees whose sal is greater than avg
sal
Answer Posted / musthafa
SELECT EMP_NO,EMP_SAL
FROM EMP_TAB
WHERE EMP_NO=&EMP_NUM
GROUP BY EMP_NO
HAVING EMP_SAL > AVG(EMP_SAL)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How is a PL/SQL code compiled?
How do you use join?
Explain ttitle and btitle.
how to escape special characters in sql statements? : Sql dba
What is percent sign in sql?
what is online transaction processing (oltp)? : Sql dba
what is the use of friend function? : Sql dba
What is coalesce in sql?
What are sql data types?
What is trigger in pl sql with examples?
Why do we use set serveroutput on?
what is data control language? : Sql dba
Does access use sql?
What is the clause we need to add in function body to return variable?
How do I order columns in sql?