• 2022-06-11
    下面查询语句中哪条查询语句会查询出所有包含"李"的数据?
    A: select * from student where name limit‘%李%’
    B: select * from student where name =‘%李%’
    C: select * from student where name like‘%李%’
    D: select * from student where name in‘%李%’
  • 举一反三