MySQL 函数查询返回NULL

create table user(id bigint primary key auto_increment, age int);

gorm使用函数查询时,通过IFNULL来确保查询不到记录时有默认值。

max函数

select max(age) from user;

select IFNULL(max(age), 0) from user;

sum函数

count函数默认是0。

posted on 2024-09-08 15:31  王景迁  阅读(5)  评论(0编辑  收藏  举报

导航