SELECT Table1.champ1
FROM Table1
WHERE len(Table1.champ1)<>9
or (not isnumeric(mid(Table1.champ1, 1, 1))
or not isnumeric(mid(Table1.champ1, 2, 1))
or not isnumeric(mid(Table1.champ1, 3, 1))
or not isnumeric(mid(Table1.champ1, 4, 1))
or not isnumeric(mid(Table1.champ1, 5, 1))
or not isnumeric(mid(Table1.champ1, 6, 1))
or not isnumeric(mid(Table1.champ1, 7, 1))
or not isnumeric(mid(Table1.champ1, 8, 1))
or not isnumeric(mid(Table1.champ1, 9, 1)) ); |