crystal123456
Programmer
Hello,
I have a field that I need to remove a certain range of numbers from, however, this field is VARCHAR2 and can contain letters.
My current code is as follows (in the Where clause): field.field_name not between '27000000' and '27999999'
The problem is this is also taking out records that are not in this range, such as 27000.
What code can I place in the where clause to solve this issue?
Thanks for the help!
I have a field that I need to remove a certain range of numbers from, however, this field is VARCHAR2 and can contain letters.
My current code is as follows (in the Where clause): field.field_name not between '27000000' and '27999999'
The problem is this is also taking out records that are not in this range, such as 27000.
What code can I place in the where clause to solve this issue?
Thanks for the help!