C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
SQL SORTING ON MULTIPLE COLUMNSLet'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;
Next TopicSQL Insert
|