programming-examples/sql/BooleanRelationalOperators/Write a query in SQL to display all the data of employees that work in department 47 or department 63.sql

4 lines
195 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*Write a query in SQL to display all the data of employees that work in department 47 or department 63.*/
SELECT *
FROM emp_details
WHERE emp_dept = 47 OR emp_dept = 63;