Using MySQL ORDER BY Clause you can sort table columns by ascending or descending. Suppose we have a table ‘tbl’ with column ‘name’ and a row like below values: 1 1B 10 2 10C 2A 10Z So, when you sort by name: SELECT name FROM tbl ORDER BY name; So, when you sort by that […]
MySQL ORDER BY Clause
