programming-examples/sql/RetrieveFromTables/Write a query in SQL to display all the data of employees that work in the department 57.sql

4 lines
152 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 the department 57.*/
SELECT *
FROM emp_details
WHERE emp_dept= 57;