Můžete použít ISNUMERIC
funkce:
select * from table where isnumeric(mycolumn) = 0
Pokud ve sloupci povolíte hodnoty NULL, budete také muset přidat kontrolu na hodnoty NULL, protože ISNUMERIC(NULL)
vyhodnotí také na 0
select * from table where isnumeric(mycolumn) = 0 or mycolumn is not null