6 lines
200 B
SQL
6 lines
200 B
SQL
/*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); |