• 2022-06-01
    17e0a6a212da224.gif关系代数练习-学生选课(题干).docx根据附件内容,查询学生表,统计“软件学院”和“网络空间学院”的学生人数,并汇总这两个学院共有多少学生。
    A: selectsDept,count(*)fromstudentwheresDeptin('软件学院','网络空间学院')groupbysDeptwithrollup;
    B: selectsDept,count(*)fromstudentwheresDeptin('软件学院','网络空间学院')groupbysDept;
    C: selectsDept,count(*)fromstudentgroupbysDeptwheresDeptin('软件学院','网络空间学院')withrollup;
    D: selectsDept,count(*)fromstudentwheresDept='软件学院'orsDept='网络空间学院'groupbysDeptwithrollup;
  • 举一反三