传统数据库(“%”):
select * from table where field like '%匹配字段%'
Access(“*”):
select * from table where field like '*匹配字段*'
传统数据库(“%”):
select * from table where field like '%匹配字段%'
Access(“*”):
select * from table where field like '*匹配字段*'