% 包含零个或多个字符的任意字符串
_(下划线) 任何单个字符
[ ] 指定范围 ([a-f]) 或集合 ([abcdef]) 中的任何单个字符:
?同于DOS命令中的?通配符,代表单个字符
# 大致同上,不同的是代只能代表单个数字
select * from tab where id='11__00'
select id from table
where id like '%'+this.youLogin.text+'%'
select * from tab where id='11__00'