distinct对字段去重并having count筛选满足条件的数据

distinct对字段去重并having count筛选满足条件的数据_第1张图片

如图 ,查询出有3个方向以上的路的编号:

select crossid from test where name is not null group by crossid having count(distinct(fx))>=3;

查询结果:

distinct对字段去重并having count筛选满足条件的数据_第2张图片

你可能感兴趣的:(java笔记)