Contains Statement Like the Like statement

Playergoodi

So I have a quick question: in my project I have a Like statement query that allows a person to search a word and it pulls the information from the Access db column. The only things is: with the Like statement, it only allows the person to search by the first letter or number.

Is there any way to search anything in the column like a Contain statement? So basically I need a Contain query statement similar to this " Like + ? '%' "

Zanon

For MS Access, you should use: LIKE '*word*'

Link: Office


In ANSI SQL, it would be: LIKE '%word%'

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related