2012年2月22日 星期三

SQL 判斷值是否有小數點

參考來源
--
 我調整後的運用:


(1)
select   col1,
case   col1   when  cast(col1  as int) then '不是' else '是' end  
from   表1

(1)
select   col1
from   表1
where col1 <> cast(col1 as int)

沒有留言:

張貼留言