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 "%das%" OR suchtext like "%das%" OR en_suchtext like "%das%" OR geographie like "%das%" OR suchtext_emo like "%das%" OR jahreszeit like "%das%" OR diskrete_infos like "%das%" OR verwertungsrechte like "%das%" OR en_geographie like "%das%" OR en_suchtext_emo like "%das%" OR en_infos like "%das%" OR en_diskrete_infos like "%das%")
AND (CONCAT('fomov',id) like "%ist%" OR suchtext like "%ist%" OR en_suchtext like "%ist%" OR geographie like "%ist%" OR suchtext_emo like "%ist%" OR jahreszeit like "%ist%" OR diskrete_infos like "%ist%" OR verwertungsrechte like "%ist%" OR en_geographie like "%ist%" OR en_suchtext_emo like "%ist%" OR en_infos like "%ist%" OR en_diskrete_infos like "%ist%")
AND (CONCAT('fomov',id) like "%wichtig%" OR suchtext like "%wichtig%" OR en_suchtext like "%wichtig%" OR geographie like "%wichtig%" OR suchtext_emo like "%wichtig%" OR jahreszeit like "%wichtig%" OR diskrete_infos like "%wichtig%" OR verwertungsrechte like "%wichtig%" OR en_geographie like "%wichtig%" OR en_suchtext_emo like "%wichtig%" OR en_infos like "%wichtig%" OR en_diskrete_infos like "%wichtig%")
AND (CONCAT('fomov',id) like "%für%" OR suchtext like "%für%" OR en_suchtext like "%für%" OR geographie like "%für%" OR suchtext_emo like "%für%" OR jahreszeit like "%für%" OR diskrete_infos like "%für%" OR verwertungsrechte like "%für%" OR en_geographie like "%für%" OR en_suchtext_emo like "%für%" OR en_infos like "%für%" OR en_diskrete_infos like "%für%")
AND (CONCAT('fomov',id) like "%google.%" OR suchtext like "%Google.%" OR en_suchtext like "%Google.%" OR geographie like "%Google.%" OR suchtext_emo like "%Google.%" OR jahreszeit like "%Google.%" OR diskrete_infos like "%Google.%" OR verwertungsrechte like "%Google.%" OR en_geographie like "%Google.%" OR en_suchtext_emo like "%Google.%" OR en_infos like "%Google.%" OR en_diskrete_infos like "%Google.%")
AND (CONCAT('fomov',id) like "%area%" OR suchtext like "%Area%" OR en_suchtext like "%Area%" OR geographie like "%Area%" OR suchtext_emo like "%Area%" OR jahreszeit like "%Area%" OR diskrete_infos like "%Area%" OR verwertungsrechte like "%Area%" OR en_geographie like "%Area%" OR en_suchtext_emo like "%Area%" OR en_infos like "%Area%" OR en_diskrete_infos like "%Area%")

)





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