且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

SQL IsNumeric 不起作用

更新时间:2023-02-06 13:07:18

看来isnumeric有一些问题:

It seems that isnumeric has some Problems:

http://www.sqlhacks.com/Retrieve/Isnumeric-problems(通过互联网档案)

根据那个链接,你可以这样解决:

According to that Link you can solve it like that:

select
cast(Reserve as decimal)
from MyReserves
where MyReserves is not null
and MyReserves * 1 = MyReserves