U kunt de ISNUMERIC
. gebruiken functie:
select * from table where isnumeric(mycolumn) = 0
Als u NULL-waarden in uw kolom toestaat, moet u ook een controle op NULL's toevoegen sinds ISNUMERIC(NULL)
evalueert ook naar 0
select * from table where isnumeric(mycolumn) = 0 or mycolumn is not null