sql query orderby two or more columns and by number of characters

Solutions on MaxInterview for sql query orderby two or more columns and by number of characters by the best coders in the world

showing results for - "sql query orderby two or more columns and by number of characters"
Luis
05 Jan 2017
1SELECT *
2FROM table_name
3ORDER BY RIGHT(name, 3) ASC, LEFT(town, 2);
4
similar questions