Hi,
I have a customer table with ~1 million records.
I have an external application that performs sertain task to the member number. It requires that the member number is exactly 7 DIGITS long (no letters, simbols, only digits) (table is alphanumeric).
There is a record in that table that either has a letter or a symbol.
I was using like '%x%' command where x was every letters and symbols on my keyboard I could find. But what if its smth other than latin?
How would you suggest to find the record that might contain something other than all digits?
Table = CUSTOMERS
Field= MEMBERNUM
Thanks in advance
I have a customer table with ~1 million records.
I have an external application that performs sertain task to the member number. It requires that the member number is exactly 7 DIGITS long (no letters, simbols, only digits) (table is alphanumeric).
There is a record in that table that either has a letter or a symbol.
I was using like '%x%' command where x was every letters and symbols on my keyboard I could find. But what if its smth other than latin?
How would you suggest to find the record that might contain something other than all digits?
Table = CUSTOMERS
Field= MEMBERNUM
Thanks in advance