A. select * from 学生表 where 所在系=计算机系 and 性别=男 B. select * from 学生表 where 所在系=‘计算机系’and 性别=‘男’ C. select * from 学生表 where 所在系=计算机系 or性别=男 D. select * from 学生表 where 所在系=‘计算机系’or性别=‘男’
A. 单引号 B. 分号 C. 空格 D. 下划线
A. 对 B. 错