I have a sql table and it contain the list of version number, how to get the latest version number ?
| id | Version number |
|---|---|
| 1 | 2.1.0 |
| 2 | 1.2.1 |
| 3 | 1.1.3 |
how will i get the latest version ‘2.1.0’ from the table by executing a sql query.
I have a sql table and it contain the list of version number, how to get the latest version number ?
| id | Version number |
|---|---|
| 1 | 2.1.0 |
| 2 | 1.2.1 |
| 3 | 1.1.3 |
how will i get the latest version ‘2.1.0’ from the table by executing a sql query.