日期:2014-05-17  浏览次数:20492 次

求sql语句判断小数点位数
id price
1 2.33
2 2.3232
3 2.44
4 2.22
5 2.5334545
...


select * from 表 where price小数点长度大于2



查询price字段小数点位数大于2的数

------解决方案--------------------
SQL code

where charindex('.',REVERSE(cast(price as varchar(50))))-1>2