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。
标签:函数,max,age,查询,user,MySQL,NULL From: https://www.cnblogs.com/WJQ2017/p/18402907