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
Is progress software supports to ( pl/sql )?
I need a function for a train ticket reservation please answer it thanks in advance
What are records give examples?
How do you determine the current isolation level? : Transact sql
Explain the significance of the & and && operators in pl sql.
Can we alter stored procedure?
Are null values same as that of zero or a blank space?
Can we insert delete data in view?
How to load data with sql*loader?
What is the difference between sql and isql*plus?
what is recursive stored procedure? : Sql dba
explain the options of myisamchk to improve the performance of a table. : Sql dba
What is record data type?
Can you do multiple joins in sql?
Is there a way to automate sql execution from the command-line, batch job or shell script?