读书人

求sql话语判断小数点位数

发布时间: 2012-08-10 12:19:33 作者: rapoo

求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 

读书人网 >asp.net

热点推荐