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.

exer_5C11.sql 228B

123456
  1. USE AP;
  2. SELECT vendor_name, customer_last_name, customer_first_name,
  3. vendor_state AS state, vendor_city AS city
  4. FROM vendors v JOIN om.customers c
  5. ON v.vendor_zip_code = c.customer_zip
  6. ORDER BY state, city ASC;