Hello all, I have a database that stores various Software versions such as the following:
3.5.7
3.5.8
3.5.9
3.5.10
When I do a Mysql Query such as "SELECT * FROM versions ORDER BY Version;" The order that it prints is this:
3.5.10
3.5.7
3.5.8
3.5.9
Is there a way to get this query to work as I intended? Thanks