在项目开发查询数据需要将相同的数据做合并处理,但是字段为null,不做合并。
创建表以及添加数据
create table t_student(
`id` int not null primary key auto_increment,
`name` varchar(32) ,
`age` int
)
insert into t_student(`name`,age) values("aa",11);
insert into t_student(`name`,age) values('bb',12);
insert into t_student(`name`,age) values('cc',13);
insert into t_student(`name`,age) values('cc',14);
insert into t_student(`name`,age) values('cc',15);
insert into t_student(`name`,age) values(null,16);
insert into t_student(`name`,age) values(null,17);
查询数据一共有7条数据
select * from t_student
结果:
再做name合并
select * from t_student group by name
结果:
结果把全部null合并在一起了。
解决方案 使用替换UUID()
在 https://stackoverflow.com/questions/4588935/group-by-do-not-group-null上看到了一个方法。
做分组的时候如果name为null时,对null设置成一个随机值UUID(),这样就避免了null会合并的情况。
使用UUID():
select * from t_student group by IFNULL(name,UUID())
结果:
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/14990.html