The alphanumeric record_no column contains multiple records like 'A123-2', 'B345-1', 'C786-1', '0000B11-1'.
Now I wanted to fetch the records with the range by using something similar to
select * from table where column between '122' and '786'
and all the records should be display (ex. 'A123-2', 'B345-1', 'C786-1', '0000B11-1').
If I try complete record_no like 'A123-1' to 'A786-1' I am getting the result only for records starting with letter A.
Someone can please help me with fetching the records with the number range and displaying all the associated alphanumeric records?
'0000B11-1'supposed to map?