I use mariadb, this code for the table CREATE TABLE a( version_id varchar(10) );
I got the following entry from table a in my database:
10.1.
10.10.
10.11.
10.12.
10.2.
10.3.
10.4.
10.5.
10.6.
10.7.
10.8.
10.9.
I want to order the entry so I get:
10.1.
10.2.
10.3.
10.4.
10.5.
10.6.
10.7.
10.8.
10.9.
10.10.
10.11.
10.12.
How can I solve it?