mysql ifnull 用法
Posted kevin_yang123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql ifnull 用法相关的知识,希望对你有一定的参考价值。
mysql IFNULL() 函数
IFNULL(expression, alt_value)
参数 | 描述 |
---|---|
expression | 必须,要测试的值 |
alt_value | 必须,expression 表达式为 NULL 时返回的值 |
mysql> select ifnull(ip,0) as ip from admin_users where id >1;
+----+
| ip |
+----+
| 0 |
| 0 |
+----+
2 rows in set
以上是关于mysql ifnull 用法的主要内容,如果未能解决你的问题,请参考以下文章