mysql_error on line
SELECT *, accounts.id, accounts.url, logos.id AS image_id , accounts.content AS accountContent FROM accounts
LEFT JOIN designers ON accounts.designer_id = designers.id AND accounts.type = 0
LEFT JOIN projectteams ON accounts.projectteam_id = projectteams.id AND accounts.type = 1
LEFT JOIN logos ON logos.account_id = accounts.id
WHERE (designers.name LIKE 'Fritz Höger'
OR projectteams.name LIKE 'Fritz Höger'
OR accounts.url = 'Fritz Höger')
AND accounts.status = 1
LIMIT 1
Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation 'like'