I have a table like that:
id | prof
---------
1 | PROF1/2015
2 | PROF2/2015
3 | PROF10/2015
When I make:
SELECT prof FROM table ORDER BY prof ASC
I'm getting result:
PROF1/2015
PROF10/2015
PROF2/2015
But the result should be:
PROF1/2015
PROF2/2015
PROF10/2015
How to make this works?