I have table with two VARCHAR2 columns:
trs_no trs_name
------ --------
JV1 ddd
. .
. .
. .
JV580 deee
I want to select for example all trs_no between JV280 and JV320
I tried the normal between but didn't work because I found JV29 in the results
So I tried also to get the length of the JV280 and JV320 in between it worked but it failed when the length is different.
How can I fix this ??