alanmusician
Programmer
I'm working with a database that has a character field for notes for the record, and I need to find a way to select all the records that have nine digits in a row inside the character field.
select * from entry where desc like '%[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]%'
doesn't work.
Even if someone could give me a method to find the first numeric character in the string it would help. Thanks,
--Alan
select * from entry where desc like '%[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]%'
doesn't work.
Even if someone could give me a method to find the first numeric character in the string it would help. Thanks,
--Alan