min_scale()
是一个系统函数,它返回表示给定值所需最小的小数位数(分数小数位数)。
min_scale()
添加于 PostgreSQL 13。
示例
min_scale()
的执行示例
postgres=# SELECT min_scale(1.2300); min_scale ----------- 2 (1 row) postgres=# SELECT min_scale(1.23); min_scale ----------- 2 (1 row) postgres=# SELECT min_scale(1.0); min_scale ----------- 0 (1 row) postgres=# SELECT min_scale(1); min_scale ----------- 0 (1 row)
参考文献
- PostgreSQL文档: 数学函数