Таблица Employees. Получить список с информацией обо всех сотрудниках
syntax that: select all user from custoers table where cust_id = 1 and cust_id = 2 and cust_id = 3 I have tried the following but it doesn't work SELECT * FROM customers WHERE cust_id IN (1,2,3) A: You can use the IN operator: SELECT * FROM customers WHERE cust_id IN