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_2.sql 306B

12345678
  1. SELECT CONCAT(vendor_contact_last_name,vendor_contact_first_name) AS full_name
  2. FROM vendors
  3. WHERE vendor_contact_last_name < 'A',
  4. vendor_contact_last_name < 'B',
  5. vendor_contact_last_name < 'C',
  6. vendor_contact_last_name < 'E'
  7. ORDER by vendor_contact_last_name,
  8. vendor_contact_first_name;