17e0a6a212da224.gif关系代数练习-学生选课(题干).docx根据附件内容,查询学生表,统计“软件学院”和“网络空间学院”的学生人数,并汇总这两个学院共有多少学生。
A: selectsDept,count(*)fromstudentwheresDeptin('软件学院','网络空间学院')groupbysDeptwithrollup;
B: selectsDept,count(*)fromstudentwheresDeptin('软件学院','网络空间学院')groupbysDept;
C: selectsDept,count(*)fromstudentgroupbysDeptwheresDeptin('软件学院','网络空间学院')withrollup;
D: selectsDept,count(*)fromstudentwheresDept='软件学院'orsDept='网络空间学院'groupbysDeptwithrollup;
A: selectsDept,count(*)fromstudentwheresDeptin('软件学院','网络空间学院')groupbysDeptwithrollup;
B: selectsDept,count(*)fromstudentwheresDeptin('软件学院','网络空间学院')groupbysDept;
C: selectsDept,count(*)fromstudentgroupbysDeptwheresDeptin('软件学院','网络空间学院')withrollup;
D: selectsDept,count(*)fromstudentwheresDept='软件学院'orsDept='网络空间学院'groupbysDeptwithrollup;
举一反三
- 关系代数练习-学生选课(题干).docx根据附件内容,查询学生表,统计“软件学院”和“网络空间学院”的学生人数,并汇总这两个学院共有多少学生。/js/editor20150812/dialogs/attachment_new/fileTypeImages/icon_doc.gif
- 17e0a6a212da224.gif关系代数练习-学生选课(题干).docx根据附件内容,查询所在院系是信息工程学院、软件学院、网络空间学院这三个学院的学生姓名、性别和所在院系,正确的SQL语句是()。 A: select sName,sSex,sDept from student where sDep='信息工程学院' and sDept='软件学院' and sDept='网络空间学院'; B: select sName,sSex,sDept from student where sDep='信息工程学院' or sDept='软件学院' or sDept='网络空间学院'; C: select sName,sSex,sDept from student where sDept in('信息工程学院','软件学院','网络空间学院'); D: select sName,sSex,sDept from student where sDept on('信息工程学院','软件学院','网络空间学院');
- 关系代数练习-学生选课(题干).docx 根据附件中的内容,查询软件学院的所有学生信息,请写出正确的关系表达式。/js/editor20150812/dialogs/attachment_new/fileTypeImages/icon_doc.gif
- 学校有若干学院,学院属性包括学院号、学院名;学院有很多学生,学生属性包括学号、姓名、性别。学生和学院实体之间的联系表示为关系模式:学院(学院号、学生号),其中学院号为主码,学生号为外码。 A: 正确 B: 错误
- 查询“学生基本情况表”中,“信息学院”所有女生的记录,正确的SQL语句是( )。 A: Select * From 学生基本情况表 Where 学院 ="信息学院" Or 性别="女" B: Select * From 学生基本情况表 Where 学院 ="信息学院" ,性别="女" C: Select * From 学生基本情况表 Where 学院 ="信息学院" And 性别="女" D: Show From 学生基本情况表 Where 学院 ="信息学院" And 性别="女"