You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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);