MySQL中是否有相当于Oracle的NVL的功能?
我正在从表中选择一列的最大值。但有一个问题:如果表中没有行,则返回 null。
我想使用一个函数,如果结果为空,它将返回某个值。例如,Oracle 有一个 NVL
函数,如果列为空,它会给出某个值。 MySQL 中有等效的函数吗?
I'm selecting the max of a column from a table. But there is one problem: if there are no rows in the table, it returns null.
I want to use a function which will return a certain value if the result is null. For example with Oracle there is the NVL
function which gives a certain value if the column is null. Is there an equivalent function in MySQL ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用合并:
Use coalesce:
或者你可以使用IFNULL(expr1,expr2)
如果expr1不为NULL,IFNULL()返回expr1;否则返回 expr2。
select IFNULL(column_name, 'NULL VALUE') from the_table;
取自:
https://dev.mysql.com/ doc/refman/8.0/en/flow-control-functions.html#function_ifnull
or you can use IFNULL(expr1,expr2)
If expr1 is not NULL, IFNULL() returns expr1; otherwise it returns expr2.
select IFNULL(column_name, 'NULL VALUE') from the_table;
taken from:
https://dev.mysql.com/doc/refman/8.0/en/flow-control-functions.html#function_ifnull