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.

demo-queries-from slides-4.sql 178B

123456
  1. USE ex;
  2. SELECT customer_first_name, customer_last_name
  3. FROM customers c JOIN employees e
  4. ON c.customer_first_name = e.first_name
  5. AND c.customer_last_name = e.last_name;