最近安裝MySQL,使用了UTF-8 ,鍵表使用了UTF-8,遇到了MySQL命令行插入中文出錯的問題。
在Query Browser中直接插入中文沒有問題.
- create table student(
- id varchar(100) not null default '',
- name varchar(20) default '',
- cardId varchar(20) not null default '',
- age int(3) default '0',
- primary key (id),
- unique key (cardId)
- )engine=InnoDB default charset=utf8;
但是在MySQL命令行中插入中文,居然不行.
設置環境為UTF8,插入仍然失敗.
- set names utf8;
解決:
- set names gbk;
- insert into student(id,name,cardId,age) values('1234','偉','05120492',24);
成功.
MySQL無重復查詢的實現
五種常用的MySQL命令行
MySQL命令行亂碼問題的解決
修復mysql表的兩種方法
php中數組插入mysql表的方法