Let’s take an example of customer table which has many columns, the following SQL statement selects all customers from the table named “customer”, stored by the “country” and “Customer-Name” columns:
SELECT * FROM customers
ORDER BY country, Customer-Name;
Leave a Reply