UNION ALL SELECT 1,2,3,table_name FROM information_schema.tables
Y recibes este error:
Illegal mix of collations for operation 'UNION'
Se soluciona con esto:
UNION ALL SELECT 1,2,3,UNHEX(HEX(table_name)) FROM information_schema.tables
Usando las funciones unhex() y hex() respectivamente
FUENTE
Publicado en tttony.blogspot.com
Publicar un comentario
No hay comentarios.:
Publicar un comentario