当前位置: 代码迷 >> Sql Server >> SQL 查询有关问题 求救 急
  详细解决方案

SQL 查询有关问题 求救 急

热度:87   发布时间:2016-04-27 19:59:24.0
SQL 查询问题 求救 急!~~~
表Table1(Id   int,Student   char(8),Score   int)
Id   :   学号
Student   :   学生
Score   :   成绩

要求查询出有重复的成绩,查询结果只显示“成绩”

谢谢先!!

------解决方案--------------------
select Score from table1 x,table1 y where x.Score=y.Score and x.Id <> y.Id
------解决方案--------------------
select distinct(a.Score) as 成绩 from table1 a,table1 b where a.Score=b.Score and a.Id <> b.Id
------解决方案--------------------
select scort from TABLE1 group by scort having count(*)> 1
  相关解决方案