博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
25.6. 数值函数
阅读量:6843 次
发布时间:2019-06-26

本文共 947 字,大约阅读时间需要 3 分钟。

25.6.1. cast 类型转换

mysql> SELECT cast(SUBSTRING('123456789',1,4) as UNSIGNED) * 100;   +----------------------------------------------------+| cast(SUBSTRING('123456789',1,4) as UNSIGNED) * 100 |+----------------------------------------------------+|                                             123400 |+----------------------------------------------------+1 row in set (0.00 sec)

25.6.2. truncate 保留小数位数

select profit, deficit, concat(truncate((profit / deficit)*100,2),'%') as percentage from ((select count(*) as profit from angelfund where profit > 0) as profit, (select count(*) as deficit from angelfund where profit < 0) as deficit);

25.6.3. MOD 求余

mysql> select 9 mod 5;+---------+| 9 mod 5 |+---------+|       4 |+---------+1 row in set (0.00 sec)mysql> select mod(5,2);+----------+| mod(5,2) |+----------+|        1 |+----------+1 row in set (0.00 sec)mysql> select mod(5,2);

原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

你可能感兴趣的文章
php 处理 非法访问
查看>>
Jenkins安装部署
查看>>
15.4. Service-oriented architecture (SOA)
查看>>
Oracle的一些基本索引
查看>>
shell中if语句的格式以及使用
查看>>
SAP Lenoardo Machine Learning
查看>>
5 Ways to Sell SAP S/4 HANA
查看>>
JS编程建议——26:小心if嵌套的思维陷阱
查看>>
Singleton(单例)模式和Double-Checked Locking(双重检查锁定)模式
查看>>
HDOJ 1013 Digital Roots
查看>>
软硬差异定性未来发展 笔电屏幕走在分岔路口
查看>>
Java魔法堂:JVM的运行模式 (转)
查看>>
thinkPHP四种URL访问方式(二)
查看>>
HDOJ 1064Financial Management
查看>>
全局变量声明的规范化(转)
查看>>
统一用户名
查看>>
Xamarin.Android开发实践(七)
查看>>
使用InstallShield打包VS程序
查看>>
我的Android进阶之旅------&gt;Android关于HttpsURLConnection一个忽略Https证书是否正确的Https请求工具类...
查看>>
shell正则表达式匹配样例
查看>>