Alright, say I want to filter a table which has stored version numbers in X.X.X format.
This is very easy if I just want to filter a single version number.
where version = '3.12.92'
as an example.
But what if I am looking for a certain RANGE of versions, such as from '2.21.23' to '3.12.92?' What would be the least complicated but reliable solution for filtering by a version range?
EDIT: It is too late to change the formatting of the table. The table is years old with MILLIONS of entries.