SQL语句怎么筛选表中某一字段不重复的数据行数?谢谢

2024-12-21 10:46:12
推荐回答(4个)
回答1:

可以参考使用如下写法
如果要全部数据则可以

select * from table T1 where 字段 = (select max(字段) from table T2 where T1.字段2 = T2.字段2)

select * from table T1 where not exists(select * from table T2 where T1.字段2 = T2.字段2 and T1.字段 < T2.字段

如果只是数据行数则可以
select count(distinct 字段)from table

回答2:

select Count(distinct(字段名)) from 表

回答3:

在3楼的基础上改下就可以的
select b.k_zbid,count(b.k_zbid) from gl_pz b group by b.k_zbid having count(b.k_zbid)<1

回答4:

使用 distinct