What is a cross platform syntax to compare two version numbers? A version has two parts: major version and minor version, both are integer.
To compare two versions, first compare their major versions. If major versions are the same, compare their minor versions.
For example,
Product Table:
version name
--------------
1.8 Bar
12.23 Foo
23.15 Hello
SQL
Select * from Product where version < "5.12"
It should return the first row with version 1.8. Is there any sql syntax which will works across different SQL platforms?
Specifically I'd like this to work on these platforms:
- oracle
- mysql
- SQL server
- sqlite
Core ANSI SQL-99 compliant:
I.e. first sort by the integer part. Then sort by the "integer" following the
.
character.Executes as:
Note that some products have their own versions of ANSI SQL's
substring()
andposition()
. If you run into trouble trysubstr(version, value)
etc.EDIT: (cast(version as int) will fail in SQL Server (and Postgres) for strings that contain decimals – a_horse_with_no_name ) Make sure you only cast the integer part as integer: