1

我必须根据下表找到结果

学生 StudentPapersSelection as sps StudentGroupManagegemt as sgm 内部数据 as iars

从学生我需要学生 rollno 和 name where iars's paperid = sps's paperid 和 iars groupid= sgm group id 和 students id 应该基于前两件事。

我正在运行的查询是:

select students.rollno, students.name 
from students,sps,iars,sgm 
where iars.id=1
and students.studentid=(select studentid 
                        from sps where sps.paperid=iars.paperid
                        and iars.id=1)
and students.studentid=(select studentid 
                        from sgm 
                        where sgm.groupid=iars.groupid 
                        and iars.id=1) 
and students.course=iars.courseid  
and students.semester=iars.semester

它说查询返回超过 1 行。我讨厌这个问题。

4

2 回答 2

0

从您的评论和问题中的有限信息来看,您似乎想要做什么而不是

...students.studentid=(select studentid ...

是用

...students.studentid in(select studentid ...

所以你的查询应该是这样的:

select students.rollno, students.name from students,sps,iars,sgm where iars.id=1
    and students.studentid in (select studentid from sps 
        where sps.paperid=iars.paperid and iars.id=1) 
    and students.studentid in (select studentid from sgm
        where sgm.groupid=iars.groupid and iars.id=1) 
    and students.course=iars.courseid 
    and students.semester=iars.semester
于 2012-07-22T19:44:48.920 回答
0

我会尝试我猜:

select  students.rollno,
        students.name
from    iars, students join sps on students.studentid = sps.studentid
        join sgm on students.studentid = sgm.studentid
where   iars.id = 1 
and     sps.paperid=iars.paperid
and     sgm.groupid=iars.groupid
and     students.course = iars.courseid
and     students.semester = iars.semester

假设这样的表:

CREATE TABLE `students` (
  `studentid` int(11) NOT NULL AUTO_INCREMENT,
  `rollno` int(11) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `course` int(11) DEFAULT NULL,
  `semester` int(11) DEFAULT NULL,
  PRIMARY KEY (`studentid`)
) ENGINE=InnoDB AUTO_INCREMENT=66820 DEFAULT CHARSET=latin1


CREATE TABLE `sps` (
  `studentid` int(11) NOT NULL AUTO_INCREMENT,
  `paperid` int(11) DEFAULT NULL,
  PRIMARY KEY (`studentid`)
) ENGINE=InnoDB AUTO_INCREMENT=66820 DEFAULT CHARSET=latin1


CREATE TABLE `sgm` (
  `studentid` int(11) NOT NULL AUTO_INCREMENT,
  `groupid` int(11) DEFAULT NULL,
  PRIMARY KEY (`studentid`)
) ENGINE=InnoDB AUTO_INCREMENT=66820 DEFAULT CHARSET=latin1


CREATE TABLE `iars` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `paperid` int(11) DEFAULT NULL,
  `groupid` int(11) DEFAULT NULL,
  `courseid` int(11) DEFAULT NULL,
  `semester` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=66820 DEFAULT CHARSET=latin1

和这样的数据:

insert into students values (1,1,'a',1,1);
insert into students values (2,1,'b',1,1);
insert into iars values(1,1,1,1,1);
insert into sgm values (1,1);
insert into sps values (1,1);
于 2012-07-22T20:18:18.553 回答