i have a table
eno dno sal
1 10 200
2 10 150
3 10 100
4 20 75
5 20 100
i want to get sal which is less than the avg sal of thri dept.
eno dno sal
2 10 150
3 10 100
4 20 75
Answer Posted / prasant
select sal from demo where sal<(select avg(sal) from demo
where eno in (2,3,4));
NOTE:first create table demo and insert all these 5 rows
then run querry.
If any issue call me(PRASANT)
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
If a cursor is open, how can we find in a pl/sql block?
What is sqlca in db2?
hi,i plan to put experience on PLSQL ,can anyone suggest me for any institutes in bangalore or how to prepare for interviews
What is a string data type in sql?
what is data control language? : Sql dba
Which query operators in sql is used for pattern matching?
What are different types of statements supported by sql?
Explain dml and ddl?
What is the sql*loader? : aql loader
What is sql and db2?
How to create an array in pl/sql?
What are the different sql commands?
What is using in sql?
Can unique keys be null?
Can we use join in subquery?