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
313 B
SQL

/*13. Write a query in SQL to display the the full name (first and last name), and department number for those employees who
works either in department 70 or 90.*/
SELECT first_name ||' '|| last_name AS Full_Name, department_id
FROM employees
WHERE department_id = 70
OR department_id = 90;