zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

MySQL设置数据库及表的字符集

mysql数据库 设置 字符集
2023-09-14 09:02:02 时间

默认创建的数据库字符集为latin1,当字段插入中文时会报错:

show create database web_test1;
alter database web_test1 CHARACTER set utf8 collate utf8_general_ci;

 

表中的字段默认也是latin1字符集:

show full columns from USER;
alter table USER convert to character set utf8;