For example, this is my response of
select *
from x
where id = 1
Result:
ID data
1 mouse
1 england
1 computer
Now, how do I search for a mouse, in the country England? I can't really check with this:
AND data = 'mouse'
AND data = 'england'
(Rather not use a query in a query if possible)