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.

12
  1. SELECT CONCAT(last_name, ', ', first_name) AS full_name FROM customers
  2. WHERE last_name REGEXP '^[M-Z]' ORDER BY last_name ASC;