Mysql
 sql >> Database >  >> RDS >> Mysql

Come inserire il carattere cinese nella tabella MySQL?

Usa UTF-8 quando crei una tabella

create table xxx ()CHARACTER SET = utf8;

Usa UTF-8 quando inserisci nella tabella

set names utf8; insert into xxx (xx,x);