Hello, How can i use Like operator in the following example:
query = "name Like somthing"
db(query).select()
I can directly do the following:
db(db.member.name.like('%'+form.vars.filter2_value+'%')).select()
But how can i do that by using query??
Thanks in Advance

