Why doesn't SQL LIKE work in Microsoft Access?

后端 未结 4 1999
借酒劲吻你
借酒劲吻你 2020-12-18 04:38

I want to my make a search-statement and query things like this

select * from table where col like \'%vkvk%\' 

But with trial and error I\'

4条回答
  •  [愿得一人]
    2020-12-18 05:00

    Try:

    select * from table where col like '*vkvk*'
    

    Use an asterisk for the wildcard character.

提交回复
热议问题