I create a fake table by:
SELECT 'B' a_name UNION ALL
SELECT 'A' a_name
and try to JOIN with different table but I see the error:
illegal mix of collations (latin1_swedish_ci implicit) and (utf8_general_ci coercible)
I am not the administrator so I am not able to update the table collation,
Is there any work-around for this problem ?