SELECT cLastName, cFirstName, cPhone
  FROM customers
  WHERE cZipCode = '90840'
  ORDER BY cLastName ASC, cFirstName ASC;