SESSION NAME: Sub Queries.

QUESTION NAME: Sub Query - 7.


TABLE DESCRIPTION:

Display all the information of an employee whose id is any
of the number 134, 159 and 183.

Table name = sub_employees

CODE:

SELECT *  FROM sub_employees  WHERE employee_id IN (134,159,183);