Hi Fábio, it is possible to get what you want, but there is a catch.
The catch is, you will have to do some work before (create a function to create the filter statement)
We will assume that the DB is Microsoft SQL Server, I think that it is.
The solution that I could get is to use the charindex function (https://docs.microsoft.com/en-us/sql/t-sql/functions/charindex-transact-sql?view=sql-server-ver15)
This is an example that you can try it out for fun
CHARINDEX(find-what, find-where, start-from-character-position)
select Content.Title
from Content
where (CHARINDEX('GDBP',Content.Title ,0)>0
and
CHARINDEX('Online',Content.Title ,0)>0
)
This will select all titles that have both variables on the title, in any order they night apear.
Hope this will help you
Good coding ....