Answers for "SQL Query Orderby Two or More Columns and by number of characters"

SQL
0

SQL Query Orderby Two or More Columns and by number of characters

SELECT *
FROM table_name
ORDER BY RIGHT(name, 3) ASC, LEFT(town, 2);
Posted by: Guest on October-01-2021

Code answers related to "SQL Query Orderby Two or More Columns and by number of characters"

Code answers related to "SQL"

Browse Popular Code Answers by Language