程式狂想筆記

一個攻城師奮鬥史

0%

SQL判斷快否有小數點

今天要查詢商品價格有小數點的,爬一下Google
有查到不錯方法,記錄一下

1
2
3
select   col1,
case col1 when cast(col1 as int) then '不是' else '是' end
from1
1
2
3
select   col1
from1
where col1 <> cast(col1 as int)

參考來源

邏輯生活: SQL 判斷值是否有小數點