I have a column in an Oracle database that I am accessing using ColdFusion and want to select a range of items.
The column is mostly numeric but contains some letters at the end the number. Sample data: 55, 56, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 57A, 57, 580, 581, 582, 583, 583, 583, 584, 585, 586, , 587, 588, 589, 58, 59, ....
I want to
select .... where filenumber >= '57' and filenumber <= '59'
and the resutls would return 57, 57A, 58, and 59
The Oracle datatype for the column is a varchar.