日期:2014-05-18 浏览次数:20477 次
select * from 表 where convert(float,字段)>20
------解决方案--------------------
再试下:
select convert(int as 字段) from 表 where xx>20 或者 select cast(字段 as int) from 表 where xx>20
------解决方案--------------------
select * from tb where convert(int,replace(col,'kb',''))>20