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_3_25-C.sql 287B

123456
  1. SELECT vendor_id,
  2. concat(vendor_contact_first_name, vendor_contact_last_name) AS contact_name
  3. FROM vendor_contacts v JOIN vendor_contacts v1
  4. ON v.vendor_id <> v1.vendors_id v1
  5. AND v.vendor_contact_last_name = v1.vendor_contact_last_name
  6. ORDER BY v.vendor_contact_last_name ASC;