第八章学习LIKE操作符,百分百(%)通配符,下划线(_)通配符
P47
select prod_id,prod_name from products where prod_name LIKE 'jet%' ; #表示检索prod_name列中的值 以jet开头的所有词,%表示后面的字符可以是多个也可以是0个#注意,MySQL的搜索是可以区分大小写,如果区分,那Jet和jet不一样#
select prod_id,prod_name from products where prod_name LIKE '%anvil%; #表示任何位置含有anvil,都能被检索出来#
P48
select prod_name from products where prod_name LIKE 's%e'; # 表示检索第一位是s,最后一位是e的所有词#
P49 下划线(_)通配符
select prod_id,prod_name from products where prod_name LIKE '_ ton anvil'; #_只能检索出单个字符#
select prod_id,prod_name from products where prod_name LIKE '% ton anvil'; #%能检索出多个字符#
注意:能用其他命令符的尽量不用通配符,因为通配符执行起来比较慢。