sql筛选出记录数大于2的记录
答案:3 悬赏:0 手机版
解决时间 2021-04-02 00:26
- 提问者网友:捧腹剧
- 2021-04-01 12:19
sql筛选出记录数大于2的记录
最佳答案
- 五星知识达人网友:思契十里
- 2021-04-01 13:27
select id,count(*) from 表
group by id
having count(*)>=2
group by id
having count(*)>=2
全部回答
- 1楼网友:孤独入客枕
- 2021-04-01 15:13
id重复且大于2
select * from 表名 where id in(select id from 表名 where count(id)>1 group by id)and id>2
id大于2
select * from 表名 where id>2
select * from 表名 where id in(select id from 表名 where count(id)>1 group by id)and id>2
id大于2
select * from 表名 where id>2
- 2楼网友:梦中风几里
- 2021-04-01 14:55
select * from #pp where id in (select id from #pp group by id having count(*)>2)
这样即可实现该功能!追问SELECt * FROM SYS_SERVST WHERe custid in(SELECt custid FROM sys_servst GROUP BY custid HAVINg servkind=1 AND permark=3 AND COUNT(*)>2);
这个sql有错吗?为什么报错说不是group by表达式?追答关键是根本就没有这样的写法,请知悉!
这样即可实现该功能!追问SELECt * FROM SYS_SERVST WHERe custid in(SELECt custid FROM sys_servst GROUP BY custid HAVINg servkind=1 AND permark=3 AND COUNT(*)>2);
这个sql有错吗?为什么报错说不是group by表达式?追答关键是根本就没有这样的写法,请知悉!
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯