• 2022-06-07 问题

    关系SC(Sno,Cno,Grade)表示学号,课程号,成绩。现要查询平均分在90分以上的学生的学号和平均成绩,正确的语句是______。 A: SELECT Sno,AVG(Grad FROM SC WHERE AVG(Grad>=90 GROUP BY Sno B: SELECT Sno,AVG(Grad FROM SC GROUP BY Sno HAVING AVG(Grad>=90 C: SELECT Sno,AVG(Grad FROM SC WHERE AVG(Grad>=90 ORDER BY Sno D: SELECT Sno,AVG(Grad FROM SC GROUP BY Cno HAVING AVG(Grad>=90

    关系SC(Sno,Cno,Grade)表示学号,课程号,成绩。现要查询平均分在90分以上的学生的学号和平均成绩,正确的语句是______。 A: SELECT Sno,AVG(Grad FROM SC WHERE AVG(Grad>=90 GROUP BY Sno B: SELECT Sno,AVG(Grad FROM SC GROUP BY Sno HAVING AVG(Grad>=90 C: SELECT Sno,AVG(Grad FROM SC WHERE AVG(Grad>=90 ORDER BY Sno D: SELECT Sno,AVG(Grad FROM SC GROUP BY Cno HAVING AVG(Grad>=90

  • 2022-10-26 问题

    下列SQL语句中,_____________可以在“学生-课程”数据库正确实现“查询选修2号课程且成绩在90分以上的所有学生的学号和姓名”。 A: SELECT Sno, Sname FROM Student, SC WHERE Student.Sno = SC.Sno ANDSC.Cno= ‘2’ AND SC.Grade > 90 B: SELECT Student.Sno, Sname FROM Student, SC WHERE Student.Sno = SC.Sno ANDSC.Cno=‘2’AND SC.Grade > 90 C: SELECT Sno, Sname FROM Student, SC WHERE SC.Cno=‘2’AND SC.Grade > 90 D: SELECT Student.Sno, Sname FROM Student, SC WHERE Student.Sno = SC.Sno AND SC.Grade > 90

    下列SQL语句中,_____________可以在“学生-课程”数据库正确实现“查询选修2号课程且成绩在90分以上的所有学生的学号和姓名”。 A: SELECT Sno, Sname FROM Student, SC WHERE Student.Sno = SC.Sno ANDSC.Cno= ‘2’ AND SC.Grade > 90 B: SELECT Student.Sno, Sname FROM Student, SC WHERE Student.Sno = SC.Sno ANDSC.Cno=‘2’AND SC.Grade > 90 C: SELECT Sno, Sname FROM Student, SC WHERE SC.Cno=‘2’AND SC.Grade > 90 D: SELECT Student.Sno, Sname FROM Student, SC WHERE Student.Sno = SC.Sno AND SC.Grade > 90

  • 2022-06-07 问题

    针对学生选课表sc(sno, cno, grade),其中sno为学号,cno为课程号,grade为成绩。以下( )语句可查询选修了两门以上成绩在90分以上课程的学生学号。 A: select sno from sc where grade>90 group by sno having count(cno)>2; B: select sno from sc where grade>90 group by sno having count(*)>2; C: select sno from sc where grade>90 and count(*)>2 group by sno; D: select sno from sc where grade>90 group by sno having count(sno)>2;

    针对学生选课表sc(sno, cno, grade),其中sno为学号,cno为课程号,grade为成绩。以下( )语句可查询选修了两门以上成绩在90分以上课程的学生学号。 A: select sno from sc where grade>90 group by sno having count(cno)>2; B: select sno from sc where grade>90 group by sno having count(*)>2; C: select sno from sc where grade>90 and count(*)>2 group by sno; D: select sno from sc where grade>90 group by sno having count(sno)>2;

  • 2022-05-28 问题

    筛查自闭症常用的评定量表有:() A: SC-90 B: DDST C: CARS D: CBRS E: EPQ F: ABC

    筛查自闭症常用的评定量表有:() A: SC-90 B: DDST C: CARS D: CBRS E: EPQ F: ABC

  • 2022-06-09 问题

    查询选课成绩大于90分的学生的姓名 Select () from student,sc where student.sno=sc.sno and grade>=90

    查询选课成绩大于90分的学生的姓名 Select () from student,sc where student.sno=sc.sno and grade>=90

  • 2022-06-04 问题

    现有学生表S、课程表C和学生选课表SC,它们的结构如下:[br][/br] S(S#, SN, SEX, AGE, DEPT) C(C#, CN,TEACHER) SC(S#, C#, GRADE) 其中:S#为学号,SN为姓名,SEX为性别,AGE为年龄,DEPT为系别,C#为课程号,CN为课程名,GRADE为成绩。 要查找分数高于90分的学生的学号和姓名的语句为( ) A: select student.sno,sname from student,sc where student.sno=sc.sno and grade>90 B: select student.sno,sname from student,sc where grade>90 C: select sno,sname from sc where grade>90 D: select sno,grade from student where grade>90

    现有学生表S、课程表C和学生选课表SC,它们的结构如下:[br][/br] S(S#, SN, SEX, AGE, DEPT) C(C#, CN,TEACHER) SC(S#, C#, GRADE) 其中:S#为学号,SN为姓名,SEX为性别,AGE为年龄,DEPT为系别,C#为课程号,CN为课程名,GRADE为成绩。 要查找分数高于90分的学生的学号和姓名的语句为( ) A: select student.sno,sname from student,sc where student.sno=sc.sno and grade>90 B: select student.sno,sname from student,sc where grade>90 C: select sno,sname from sc where grade>90 D: select sno,grade from student where grade>90

  • 2022-06-01 问题

    查询编号为'c01'的课程考试成绩在80-89之间的学生的学号,下列()语句不能实现。 A: select sno ,grade from sc where cno='c01' and grade between 80 and 89 B: select sno ,grade from sc where cno='c01' and grade>=80 and grade<90 C: select sno ,grade from sc where cno='c01' and not (grade90) D: select sno ,grade from sc where cno='c01' and grade in (80-89)

    查询编号为'c01'的课程考试成绩在80-89之间的学生的学号,下列()语句不能实现。 A: select sno ,grade from sc where cno='c01' and grade between 80 and 89 B: select sno ,grade from sc where cno='c01' and grade>=80 and grade<90 C: select sno ,grade from sc where cno='c01' and not (grade90) D: select sno ,grade from sc where cno='c01' and grade in (80-89)

  • 2022-06-19 问题

    假定: A: S B: C,SC C: S,SC D: S,C,SC

    假定: A: S B: C,SC C: S,SC D: S,C,SC

  • 2022-06-18 问题

    LC和SC分别具有几个工作站系统() A: LC:3,SC:3 B: LC:4,SC:2 C: LC:2,SC:4 D: LC:4,SC:3

    LC和SC分别具有几个工作站系统() A: LC:3,SC:3 B: LC:4,SC:2 C: LC:2,SC:4 D: LC:4,SC:3

  • 2022-06-04 问题

    考虑到参照完整性的外码设计,如图所示的student,course,sc三张表的创建顺序应为()。 A: sc,course,student B: sc,student,course C: student,sc,course D: student,course,sc

    考虑到参照完整性的外码设计,如图所示的student,course,sc三张表的创建顺序应为()。 A: sc,course,student B: sc,student,course C: student,sc,course D: student,course,sc

  • 1 2 3 4 5 6 7 8 9 10