DBMS-Relational Query Languages
DBMS-Relational Query Languages
42. What will be result of statement such as SELECT * FROM EMPLOYEE WHERE SALARY IN (4000, 8000)?
- all employees whose salary is either 4000 or 8000.
- all employees whose salary is between 4000 and 8000
- all employees whose salary is not between 4000 and 8000
- None of these