mysql创建数据库问题!
longname,password,username 这3项如果不写 默认的整理是latin1_swedish_ci 每次都要去数据库里改,请问怎么在创建的时候加上utf8_general_ci呢?书写格式是怎样的?
create table ww
(
id smallint(10) not null auto_increment comment'用户流水号,自动编号',
longname varchar(20) not null comment'登陆账号',
password varchar(20) not null comment'密码',
username varchar(20) not null comment'昵称,姓名可以重复,有同名存在',
create_time date not null comment'日期',
dongjie tinyint(1) not null comment'启用账号 禁用账号 1-启用 2-禁用',
primary key(id),
unique index (longname)
)
答案:可以在字段后面添加:
longname varchar(20) character set latin1 collate latin1_bin not null comment'登陆账号',
可以在表后面添加:
create table ww
(
.....
) DEFAULT CHARSET=latin1;
其他:我建议用网页版的mysql管理工具先试试
然后再用命令行
上一个:mysql的键问题,
下一个:怎样查看MySQL文件