In Room database, If I have a query like this
SELECT * FROM table_name WHERE column_name LIKE '%' || :param || '%'
and the value of param is % or _, then all records in this table will be fetched.
I want to search in this column by the value of these chars not use them as wildcards, how to do this?