一个表中的id有多个记录,把所有这个id的记录查出来,并显示共有多少条记录数
select id ,Count(*) from table_name group by id having count(*)>1
给出一张表
查询数学成绩相同的记录,并显示出该成绩相同记录数
SELECT Math,COUNT(*) from [TestDB].[dbo].[Student] group by Math having COUNT(*)>1;
结果
本文共 270 字,大约阅读时间需要 1 分钟。
select id ,Count(*) from table_name group by id having count(*)>1
查询数学成绩相同的记录,并显示出该成绩相同记录数
SELECT Math,COUNT(*) from [TestDB].[dbo].[Student] group by Math having COUNT(*)>1;
转载于:https://www.cnblogs.com/JiYF/p/8808309.html