Answers for "mysql error code 1271. illegal mix of collations for operation 'union'"

SQL
1

mysql illegal mix of collations for operation 'join'

SELECT table_schema, table_name, column_name, character_set_name, collation_name
FROM information_schema.columns
WHERE collation_name = 'latin1_general_ci'
ORDER BY table_schema, table_name,ordinal_position; 

ALTER TABLE tbl_name CONVERT TO CHARACTER SET latin1 COLLATE 'latin1_swedish_ci'
Posted by: Guest on July-15-2020

Code answers related to "mysql error code 1271. illegal mix of collations for operation 'union'"

Code answers related to "SQL"

Browse Popular Code Answers by Language