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 / om patel
SELECT E.ENAME FROM EMP E ,DEPT D WHERE E.DEPTNO=D.DEPTNO
AND SAL BETWEEN 2000 AND 3000 AND D.DNAME='X';
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is pls_integer in pl sql?
What is raid? How does it help storage of databases?
Can you do multiple joins in sql?
What is the starting oracle error number?
Explain exception handling in pl/sql?
Does db2 use sql?
Can we connect to postgresql using sql developer?
What is parallel hint?
What are the types of subqueries?
what are integrity rules?
What are analytical functions in sql?
How to get unique records from a table?
how to create a new table in mysql? : Sql dba
What is the difference between union and union all command?
what are rollup and cube in t-sql? : Transact sql