• 2022-06-06
    检索所有姓“周”,或者姓“陈”的学生信息,可以使用的SQL语句有______。
    A: SELECT * FROM studentWHERE student_name LIKE( '陈%' OR '周%');
    B: SELECT * FROM student WHERE SUBSTRING(student_name,1,1) in ('陈','周');
    C: SELECT * FROM student WHERE SUBSTRING(student_name,1,1)= '周' OR SUBSTRING(student_name,1,1)='陈';
    D: SELECT * FROM student WHERE student_name LIKE '陈%' OR student_name LIKE '周%';
  • 举一反三