programming-examples/sql/SubqueriesHRDatabase/Write a statement to display all the information of an employee whose id is any of the number 134, 159 and 183.sql

6 lines
200 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*Write a statement to display all the information of an employee whose id is any of the number 134, 159 and 183.*/
SELECT *
FROM employees
WHERE employee_id IN (134,159,183);