Mysql 数据库编码问题
数据库建表后,插入数据,如果数据位汉子,将提示错误:“incorrect string value....”。
解决方法:改变数据库编码
第一种方法:改变database 编码:
alter database work_study set utf8
第二种方法:改变数据表table的编码:
alter table table_name convert to character set utf8
数据库建表后,插入数据,如果数据位汉子,将提示错误:“incorrect string value....”。
解决方法:改变数据库编码
第一种方法:改变database 编码:
alter database work_study set utf8
第二种方法:改变数据表table的编码:
alter table table_name convert to character set utf8