Select *
from Table
where ISNUMERIC(Field) = 0
This will probably use a table scan because of the function on field, but with only 90k records, it shouldn't be a problem
Select *
from Table
where ISNUMERIC(Field) = 0
This will probably use a table scan because of the function on field, but with only 90k records, it shouldn't be a problem