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_5C64.sql 197B

123
  1. SELECT vendor_name, customer_last_name, customer_first_name, vendor_state AS state, vendor_city AS city FROM vendors v
  2. JOIN om.customers c
  3. ON v.vendor_zip_code = c.customer_zip ORDER BY state, city