access通配符为*和?
sqlserver通配符为%和_
在access中使用sql查询语句,进行模糊查询要用:select * from table where name like '*海*'
而在c#中调用该语句却得不到结果,解决办法是c#中使用下面语句:select * from table where name like '%%海%%'