多项选择题
在学生选课系统中,有如下关系模式:student学生表(,sName,sSex,sAge,sDept)course课程表(,cName,cPno,cCredit)sc选课表(,,,scGrade)其中,sNo是学号、sName是学生姓名、sSex是性别、sAge是年龄、sDept是学生所在院系、cNo是课程编号、cName是课程名称、cPno是先修课程、cCredit是学分、scNo是选课代码、scGrade是成绩。查询所在院系是计算机学院、软件学院、电子信息学院这三个学院的学生姓名、性别和所在院系,正确的SQL语句是( )。 A. select sName,sSex,sDept from student where sDept='计算机学院' and sDept='软件学院' and sDept='电子信息学院'; B. select sName,sSex,sDept from student where sDept='计算机学院' or sDept='软件学院' or sDept='电子信息学院'; C. select sName,sSex,sDept from student where sDept in('计算机学院','软件学院','电子信息学院'); D. select sName,sSex,sDept from student where sDept on('计算机学院','软件学院','电子信息学院');