Illegal mix of collations
This error occurs when columns compared in the same query use different collations. The fix is to make the related columns use the same collation.
QB / QBOX users
What to do
utf8mb4_unicode_ciSQL
ALTER TABLE players
MODIFY citizenid VARCHAR(11)
CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
ESX users
What to do
SQL

Notes
Example error logs
Last updated