码迷,mamicode.com
首页 > 数据库 > 详细

MySQL查询小数点位数

时间:2016-07-11 20:53:49      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

怎么查询某个字段中小数有几位?

MySQL数据库:

通过下面sql就可以查出来,有2位col*100,有3位col*1000,一次类推;

select * from ws_inventory_item where real_quantity*1000 - floor(real_quantity*1000) > 0

备注:floor:函数只返回整数部分,小数部分舍弃。

Oracle数据库:

select ltrim(124532.62879-floor(124532.62879),0.) from dual;
select length(66695) from dual;

 

这两条SQL结合起来,就可以查询出小数点后边部分的小数位数、在Oracle中很经典,也很实用!

下面这个做法也还是经典(推荐使用):

比如有一张表的某字段是 number(10,4)的,但是大多数是3位小数,如何把是4位小数的结果查询出来:

select * from tables where (col- trunc(col,3) ) <>0 ;

select length(21221.3410) - instr(21221.3410,.) from dual;

 

最后自己总结的SQL如下:

---查询小数点所在的位置

select instr(12563.26530,.) from dual;

 


---查询小数部分

select substr(12563.26530,instr(12563.26530,.)+1) from dual;

 


---查询小数部分的长度

select length(substr(12563.26530,instr(12563.26530,.)+1)) from dual;

 

MySQL查询小数点位数

标签:

原文地址:http://www.cnblogs.com/sdgf/p/5661388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!