• 2022-06-26
    在student表中显示所有姓马的学生的姓名、生日和Email。下列语句可以实现的( )
    A: select sname,birthdate,email from student where sname like ‘马%’
    B: select sname,birthdate,email from student where sname rike ‘马.*’;
    C: select sname,birthdate,email from student where sname like ‘%马‘
    D: select sname,birthdate,email from student where sname =’*马*’
  • 举一反三