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.sql 213B

123456
  1. SELECT vendor_id,
  2. vendor_name,
  3. concat(vendor_contact_first_name, vendor_contact_last_name) AS contact_name
  4. FROM vendor v
  5. WHERE vendor_id = vendor_contact_last_name
  6. ORDER BY vendor_contact_last_name;