部落格

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)
 

 

標籤