Please help me because I couldn’t get it right.
What is SQL access to select this column (columnA) so that it returns a set of results with different values, sorted first by numbers and then by letters.
Here are the column values: {10A, 9C, 12D, 11G, 9B, 10C, 9R, 8T}
I tried 'Select a single ColumnA from tblClass order by 1' but it returns {10A, 10C, 11G, 12D, 8T, 9B, 9C, 9R}, which is not what I want.
Thanks in advance.
source share