mysql round()函数以及convert()函数,保留n位小数
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql round()函数以及convert()函数,保留n位小数相关的知识,希望对你有一定的参考价值。
mysql> select round(2.232,2); +----------------+ | round(2.232,2) | +----------------+ | 2.23 | +----------------+ 1 row in set (0.00 sec) mysql> select convert(1.2323,decimal(6,2)); +------------------------------+ | convert(1.2323,decimal(6,2)) | +------------------------------+ | 1.23 | +------------------------------+ 1 row in set (0.00 sec)
以上是关于mysql round()函数以及convert()函数,保留n位小数的主要内容,如果未能解决你的问题,请参考以下文章