I have these entries in database.
Numbers at the end are versions, i.e 10.0, 9.1, 9.0. I need to compare the entries and I used a query like,
select * from Fault_Profile where PROFILE_NAME < 'DEFAULT_9.1';
But the entries are comapred like string, and returns values with 10.0 (I know it is obivous).
But is there any way using sql queries to extract number out of the string and compare it like numbers.
NOTE : This is old design in my project can't change schema can't change values.