Hej, du kan använda något sånt här
select connections.connection_id, contacts.contact_id companies.companyid
from connections
left join companies on connections.company_id = companies.company_id
left join contacts on contacts.contact_id = connections.contact_id
where company_name LIKE ('%qwer%')
and contact_name LIKE('%abc%')