MySQL IFNULL() 函数
定义和用法
IFNULL() 函数在表达式为 NULL 时返回指定的值。
如果表达式不为 NULL,则此函数返回表达式。
语法
IFNULL(expression, alt_value)
参数值
参数 | 描述 |
---|---|
expression | 必需。要测试是否为 NULL 的表达式 |
alt_value | 必需。如果expression 为 NULL 则要返回的值 |
技术细节
工作于 | 从 MySQL 4.0 开始 |
---|
IFNULL() 函数在表达式为 NULL 时返回指定的值。
如果表达式不为 NULL,则此函数返回表达式。
IFNULL(expression, alt_value)
参数 | 描述 |
---|---|
expression | 必需。要测试是否为 NULL 的表达式 |
alt_value | 必需。如果expression 为 NULL 则要返回的值 |
工作于 | 从 MySQL 4.0 开始 |
---|
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]