找出以“b”开头的名字:
select * from pet where name like 'b%'

“_”:匹配任何单个字符
“%”:匹配任意数目字符(包括零字符)

04-19 17:17