SQL里如何查询一个字段里不是数字类型的值出来

select * from 表 where isnumeric(字段) = 1

isnumeric(字段),如果为数字,则返回1,如果不为数字,则返回0~~~

    

原文地址:https://www.cnblogs.com/lantianhf/p/6341409.html