suppose I have two table one Emp and other is dpt.
Emp table has a field ,dept id,name ,sal and dpt table has a
field dept id,dept name.
Now I want to find out the emplyee list whose sal is between
2000-3000 from dept x.
Answer Posted / mai
Select Name
From Emp e inner join Dpt d
on d.dptid=e.dptid
Where sal>=2000 And sal<=3000
And dptname='x'
| Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
what is data manipulation language? : Sql dba
What is the difference between python and sql?
What are different types of triggers?
Are there any features that are decommissioned in 11g that are not present in 11g?
Is sql a programming?
Explain two easy sql optimizations.
Why trigger is used in sql?
explain mysql aggregate functions. : Sql dba
Is pl sql different from sql?
What is function and procedure?
Is primary key clustered index?
Can a foreign key be a duplicate?
What is database white box testing and black box testing?
How many types of triggers are there in pl sql?
What are sql*plus environment variables?