mysql php - latin1? -


i have mysql table, made in latin1 style , way. how can make table latin1 except 1 column, need able accept chinese characters?

also, whats best structure column chinese characters?

alter table your_table modify column chinese_column varchar(255) collate utf8_general_ci; <-- or relevant collate 

details can found here


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -