SELECT customername, state, country FROM customers ORDER BY country;
SELECT customername, IF(state IS NULL, 'N/A', state) state, country FROM customers ORDER BY country;
SELECT customername, IFNULL(state,"N/A") state, country FROM customers ORDER BY country;
SELECT * FROM customers;
SELECT * FROM employees;
SELECT * FROM offices;
SELECT * FROM orderdetails;
SELECT * FROM orders;
SELECT * FROM payments;
SELECT * FROM productlines;
SELECT * FROM products;