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
What is the command used to fetch the first 5 characters of a string?
What is trigger in sql?
How do I order columns in sql?
what tools available for managing mysql server? : Sql dba
What is the main reason behind using an index?
Describe types of sql statements?
what is online transaction processing (oltp)? : Sql dba
write an sql query to find names of employee start with 'a'? : Sql dba
Can we call a function containing dml statements in a select query?
Is trigger a stored procedure?
The in operator may be used if you know the exact value you want to return for at least one of the columns.
What is a record in pl/sql?
Differentiate pl/sql and sql?
What are the basic techniques of indexing?
Explain how to use transactions efficiently : transact sql