模糊查詢:
where mc like '值':返回值等同於where mc ='值'
where mc like '%值':匹配 名稱是 '*值'(以“值”作為結尾)的所有數據,*表示任何值任何長度;
where mc like '%值%':返回所有包含【值】的所有數據。
where mc like '值1_值2':返回所有形式是【值1*值2】的所有數據,*表示任一一個字符。
where mc like '值[AB]值': 返回所有值等於【值A值】和【值B值】的所有數據。
總之:【%】表示匹配任意長度;【_】表示一個字符;