SQL里如何查询一个字段里不是数字类型的值出来
时间:2017-01-22 22:20:35
收藏:0
阅读:1050
select * from 表 where isnumeric(字段) = 1
isnumeric(字段),如果为数字,则返回1,如果不为数字,则返回0~~~
原文:http://www.cnblogs.com/lantianhf/p/6341409.html
评论(0)