• 2022-06-16
    查询student表中的gender字段(gender代表性别),使其查询记录中不能出现重复值的SQL语句是(1.0分)
    A: SELECT gender FROM student;
    B: SELECT DISTINCT * FROM student;
    C: SELECT DISTINCT gender FROM student;
    D: SELECT * FROM student;
  • 举一反三