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

2023-10-03 17:03
select   col1,
case   col1   when  cast(col1  as int) then '不是' else '是' end
from   表1
select   col1,
case   col1   when  cast(col1  as int) then '不是' else '是' end
from   表1
 
or 
 
select   col1
from   表1
where col1 <> cast(col1 as int)