Yes I' ve tried queries with the OR keyword. The problem with this
methode is that the more keywords I enter, the more results I get.
That should be reversed. :O)
So I have to Use the AND keyword.
I ' ve tried a few selects with LIKE.
the result i expect for my search query should be something like this:
select *,
string(
a1.name,a1.street,a1.city...,
a2.name,a2.street,a2.city) Q
from ADDRESS a1 join JOINTABLE ... join ADRESS a2 ... where
Q like '%Potter%' and
Q like '%mega%' and
Q like '%Germany%'
but this query is much too slow. :O(