We occasionally have invalid serial numbers with letters contained within a numeric string. I want to be able to select out serial numbers that have a letter somewhere within the numeric string without having to do the following:
select * from inventory where serialnumber like '%A%' or serialnumber like '%B%'...
all the way through the alphabet. I think I've seen somewhere where you could put A..Z within the select statement somewhere. Is there an easy way to do what I want to do?
Regards,
Bessebo
select * from inventory where serialnumber like '%A%' or serialnumber like '%B%'...
all the way through the alphabet. I think I've seen somewhere where you could put A..Z within the select statement somewhere. Is there an easy way to do what I want to do?
Regards,
Bessebo