• 2022-06-29 问题

    在所有学生中查询比计算机系所有学生年龄都要大的学生姓名,正确的查询语句是___________________。 A: SELECT Sname FROM Student WHERE Sage > ( SELECT MAX(Sage) FROM Student WHERE Sdept = 'CS'); B: SELECT Sname FROM Student WHERE Sage > ALL ( SELECT Sage FROM Student WHERE Sdept = 'CS'); C: SELECT Sname FROM Student S1 WHERE EXISTS ( SELECT Sage FROM Student S2 WHERE Sdept = 'CS' AND S1.Sage > S2.Sage); D: SELECT Sname FROM Student S1 WHERE NOT EXISTS ( SELECT * FROM Student S2 WHERE Sdept = 'CS' AND S1.Sage <= S2.Sage);

    在所有学生中查询比计算机系所有学生年龄都要大的学生姓名,正确的查询语句是___________________。 A: SELECT Sname FROM Student WHERE Sage > ( SELECT MAX(Sage) FROM Student WHERE Sdept = 'CS'); B: SELECT Sname FROM Student WHERE Sage > ALL ( SELECT Sage FROM Student WHERE Sdept = 'CS'); C: SELECT Sname FROM Student S1 WHERE EXISTS ( SELECT Sage FROM Student S2 WHERE Sdept = 'CS' AND S1.Sage > S2.Sage); D: SELECT Sname FROM Student S1 WHERE NOT EXISTS ( SELECT * FROM Student S2 WHERE Sdept = 'CS' AND S1.Sage <= S2.Sage);

  • 2022-06-07 问题

    现有学生关系表S(sno,sname,ssex,sage),查找比所有"张三"年龄大的男生信息,下列选项中正确的SQL语句是________。 A: select * fromSwhere ssex='男' and sage>;SOME(select sage from S where sname='张三); B: select * fromSwhere ssex='男' and sage>;ALL(select sage from S where sname='张三); C: select * fromSwhere ssex='男' and sage>;(select max(sage) from S where sname='张三); D: select * fromSwhere ssex='男' and sage>;(select min(sage) from S where sname='张三);

    现有学生关系表S(sno,sname,ssex,sage),查找比所有"张三"年龄大的男生信息,下列选项中正确的SQL语句是________。 A: select * fromSwhere ssex='男' and sage>;SOME(select sage from S where sname='张三); B: select * fromSwhere ssex='男' and sage>;ALL(select sage from S where sname='张三); C: select * fromSwhere ssex='男' and sage>;(select max(sage) from S where sname='张三); D: select * fromSwhere ssex='男' and sage>;(select min(sage) from S where sname='张三);

  • 2021-04-14 问题

    _______is the key aspect of the sage’s success.

    _______is the key aspect of the sage’s success.

  • 2021-04-14 问题

    学生关系模式为S(Sno,Sname,SD,Sage),其中:Sno表示学生学号...Sage FORM S WHERE()。

    学生关系模式为S(Sno,Sname,SD,Sage),其中:Sno表示学生学号...Sage FORM S WHERE()。

  • 2022-06-09 问题

    查询非计算机系中比计算机系中年龄最小者年龄大或相等的学生姓名,不正确的查询语句是: A: SELECT SnameFROM Student S1WHERE NOT EXISTS (SELECT *FROM Student S2WHERE S2.Sdept = 'CS'AND S1.Sage ;= S2.Sage)AND Sdept != 'CS'; B: SELECT SnameFROM StudentWHERE Sage >;= (SELECT MIN(Sage) FROMStudentWHERE Sdept = 'CS')AND Sdept != 'CS'; C: SELECT SnameFROM StudentWHERE Sage >;= ANY (SELECT SageFROM StudentWHERE Sdept = 'CS')AND Sdept != 'CS';

    查询非计算机系中比计算机系中年龄最小者年龄大或相等的学生姓名,不正确的查询语句是: A: SELECT SnameFROM Student S1WHERE NOT EXISTS (SELECT *FROM Student S2WHERE S2.Sdept = 'CS'AND S1.Sage ;= S2.Sage)AND Sdept != 'CS'; B: SELECT SnameFROM StudentWHERE Sage >;= (SELECT MIN(Sage) FROMStudentWHERE Sdept = 'CS')AND Sdept != 'CS'; C: SELECT SnameFROM StudentWHERE Sage >;= ANY (SELECT SageFROM StudentWHERE Sdept = 'CS')AND Sdept != 'CS';

  • 2021-04-14 问题

    已知关系S(S#,Sname,Sage,Sclass), SC(S#,C#,Sc...fad5e0e4a2991749.png

    已知关系S(S#,Sname,Sage,Sclass), SC(S#,C#,Sc...fad5e0e4a2991749.png

  • 2022-06-25 问题

    sage列的取值范围限定为6~50之间,正确的表达式是( ) A: sage>=6 and sage<=50 B: sage>=6 and <=50 C: sage>=6 or sage<=50 D: sage>=6 or <=50

    sage列的取值范围限定为6~50之间,正确的表达式是( ) A: sage>=6 and sage<=50 B: sage>=6 and <=50 C: sage>=6 or sage<=50 D: sage>=6 or <=50

  • 2022-06-18 问题

    利用SQL Server Management Studio创建数据库表时,为列“Sage”添加检查约束,要求Sage在18-25岁之间,在“CHECK约束”的设置窗口中,表达式应该输入( )。 A: Sage<=25 && Sage>=18 B: 18<=Sage<=25 C: Sage>=18 And Sage<=25 D: Sage>=18 OR Sage<=25

    利用SQL Server Management Studio创建数据库表时,为列“Sage”添加检查约束,要求Sage在18-25岁之间,在“CHECK约束”的设置窗口中,表达式应该输入( )。 A: Sage<=25 && Sage>=18 B: 18<=Sage<=25 C: Sage>=18 And Sage<=25 D: Sage>=18 OR Sage<=25

  • 2022-06-09 问题

    计算机系年龄最大的学生的信息select *from studentwhere __________________________________ A: sdept='计算机系' and sage=(select max(sage) from student where sdept='计算机系') B: sdept='计算机系' and sage=max(sage) C: sdept='计算机系' or sage=(select max(sage) from student ) D: sdept='计算机系' or sage=max(sage)

    计算机系年龄最大的学生的信息select *from studentwhere __________________________________ A: sdept='计算机系' and sage=(select max(sage) from student where sdept='计算机系') B: sdept='计算机系' and sage=max(sage) C: sdept='计算机系' or sage=(select max(sage) from student ) D: sdept='计算机系' or sage=max(sage)

  • 2022-06-25 问题

    如果想给某字段sage施加取值至少18的约束,应该如何表示? A: Sage smallint not null B: Sage smallint unique C: Sage smallint check(sage>=18) D: Sage smallint primary key

    如果想给某字段sage施加取值至少18的约束,应该如何表示? A: Sage smallint not null B: Sage smallint unique C: Sage smallint check(sage>=18) D: Sage smallint primary key

  • 1 2 3 4 5 6 7 8 9 10