sql语句实现一个简单的查询

2024年11月18日 12:35
有1个网友回答
网友(1):

1、 先找出B字段慧亏中的数值的数量

select B字段, count(B字段) as num from 数据表 group by B字段

2、 先找出B字段中的重复值的记录值

select B字段, count(B字段) as num from 数据表 group by B字段备碧凳

就是 num >1 的记录集

3、 求仿旅解

select a.A字段,a.B字段,a.C字段
from 数据表 a,
( select B字段, count(B字段) as num from 数据表 group by B字段) b
where a.B字段 = b.B字段 and b.num>1