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_5C42.sql 136B

123456
  1. USE AP;
  2. SELECT MIN(vendor_name) AS first_vendor,
  3. MAX(vendor_name) AS last_vendor,
  4. COUNT(vendor_name) AS number_of_vendors
  5. FROM vendors;