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 / manasa
SELECT e.name,d.dept from employee e INNERJOIN dept d ON e.deptid=d.deptid WHERE e.salary between 2000 AND 3000
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how can we destroy the cookie? : Sql dba
What mean sql?
How do I use google cloud in sql?
How do you write a complex sql query?
What is pl/sql table? Why is it used?
What is rowtype?
Is sql similar to python?
What is cte?
What is data profiling in sql?
Can we use distinct and group by together?
What is the difference between sql and mysql?
Does sql backup shrink transaction log?
What is difference between function and trigger?
Which version of sql do I have?
What is a string data type in sql?