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

exec_5C65.sql 159B

1234
  1. SELECT customer_first_name, customer_last_name
  2. FROM customers c JOIN employees e
  3. ON c.customer_first_name = e.first_name
  4. AND c.customer_last_name = e.last_name