单项选择题
在学生选课系统中,有如下关系模式: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, sDeptfrom studentwhere sName = '%张%' B. select sName, sDeptfrom studentwhere sName like '%张%' C. select sName, sDeptfrom studentwhere sName like '张%' D. select sName, sDeptfrom studentwhere sName = '张_'