1. 找出名中包含 “廠”的所有供應商的名select * from provider where pro_name like '%廠%'2.第二個字為華select * from provider where pro_name like '_華%' 通配符 %:代表任何字元 _:任何單個字元 [a ...
1. 找出名中包含 “廠”的所有供應商的名
select * from provider where pro_name like '%廠%'
2.第二個字為華
select * from provider where pro_name like '_華%'
通配符
%:代表任何字元
_:任何單個字元
[a-z]:範圍內的單個字元、匹配不區分大小寫
[^0-9]:不在範圍內
本意
select * from employee where id like 'd%%' escape 'd'
select * from employee where id like 'd_%' escape 'd'