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
Can pl sql procedure have a return statement?
What will you get by the cursor attribute sql%found?
What are the advantages of sql?
what is normalization? : Sql dba
How is data stored in sql?
How do you add a column to a table?
How are functions and procedures called in PL/SQL?
Is crud a cuss word?
Why do we create views in sql?
Is sql port 1433 encrypted?
Which is better join or inner query?
What is database white box testing and black box testing?
Is postgresql a server?
What is db journal file?
Where the sql database files are stored?