照片里面的第4条,检索以开头的人员,求大神解决啊
select * from 表 where 字段 like "L%" -- 以L开头
检索姓名以L开头的
select sname, age from s where sname like "L%"