1、我的电脑上装 的mysql为utf-8,为什么在insert 时汉字不行,老报错;
2、mysql语句中可以定义变量吗,
3、mysql中如何让insert语句不插入存在特定的记录,类似mssql里面的if not exists(select * from tables where fileds='aaa')
utf-8 gbk gb2312 都有的选,可以都试试
删除原表后,重建表
create table employees
(
empid int auto_increment primary key,
fullname varchar(100) not null
) default charset=utf8