关于java:Mysql-使用-group-by-不对-null-做分组

39次阅读

共计 765 个字符,预计需要花费 2 分钟才能阅读完成。

在我的项目开发查问数据须要将雷同的数据做合并解决,然而字段为 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())

后果:

正文完
 0