wildcards 萬用字元
-- %代表多個字元 _代表一個字元
-- 取得電話號碼尾數為335的顧客
select *from client
where phone
like '%335';
select *from client
where phone
like '%354%';
-- 取得姓氏為 艾 的員工
select *from client
where client_name
like '艾%';
-- 取得9月生日的員工,後面底線有5個 ex:2002-09-09
select *from employee
where birth
like '_____09%';