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\'
Try:
select * from table where col like '*vkvk*'
Use an asterisk for the wildcard character.