• 2022-06-29
    查询计算机系的所有男生信息______。
    A: select * from 学生表 where 所在系=计算机系 and 性别=男
    B: select * from 学生表 where 所在系=‘计算机系’and 性别=‘男’
    C: select * from 学生表 where 所在系=计算机系 or性别=男
    D: select * from 学生表 where 所在系=‘计算机系’or性别=‘男’
  • 举一反三