Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8mb3_general_ci,COERCIBLE) for operation 'like'

SELECT *,
(SELECT name FROM storage_bin WHERE id=storage_files.bin_id) AS bin_name,
CONCAT('foMOV',id) as foMOV
FROM
storage_files
WHERE




(
(CONCAT('fomov',id) like "%unberührte%" OR suchtext like "%unberührte%" OR en_suchtext like "%unberührte%" OR geographie like "%unberührte%" OR suchtext_emo like "%unberührte%" OR jahreszeit like "%unberührte%" OR diskrete_infos like "%unberührte%" OR verwertungsrechte like "%unberührte%" OR en_geographie like "%unberührte%" OR en_suchtext_emo like "%unberührte%" OR en_infos like "%unberührte%" OR en_diskrete_infos like "%unberührte%")
AND (CONCAT('fomov',id) like "%natur%" OR suchtext like "%Natur%" OR en_suchtext like "%Natur%" OR geographie like "%Natur%" OR suchtext_emo like "%Natur%" OR jahreszeit like "%Natur%" OR diskrete_infos like "%Natur%" OR verwertungsrechte like "%Natur%" OR en_geographie like "%Natur%" OR en_suchtext_emo like "%Natur%" OR en_infos like "%Natur%" OR en_diskrete_infos like "%Natur%")

)





AND
(user_id = 0 ||
(
(SELECT COUNT(id) FROM storage_files_rights_user WHERE file_id=storage_files.id) <= 0
AND
(SELECT COUNT(id) FROM storage_files_rights_group WHERE file_id=storage_files.id) <= 0
AND
(SELECT COUNT(id) FROM storage_bin_rights_group WHERE bin_id=storage_files.bin_id) <= 0
)
||
(
SELECT count(storage_files.id)
FROM storage_files, storage_bin_rights_group, usergroups_user
WHERE storage_bin_rights_group.bin_id = storage_files.bin_id
AND storage_bin_rights_group.usergroup_id = usergroups_user.usergroup_id
AND usergroups_user.user_id = 0
)
)
ORDER BY
realfilename ASC