I have created a database in SQL Server console C# where there are different groups added to a row vertically, eg G1, G2, G3 etc.
This is ok for what is needed, however when a value is added like so G10, it automatically put itself under G1, so instead of
G1
G2
G3
G10
it looks like this:
G1
G10
G2
G3
I have tried the following query
SELECT *
FROM mondayTable
ORDER BY SAAT ASC
and
ORDER BY SAAT DESC
but it still stays in the same order, but from top to bottom, bottom to top.
Here is a screenshot of what it looks like with ORDER BY DESC
: