帮我看下 创建users表时出错 在什么位置
帮我看下这里怎么错了。
create users(
-> id smallint(5) unsigned not null primary key auto_increment,
-> username varchar(20) not null,
-> password varchar(32) not null,
-> age tinyint(3) unsigned not null default 10,
-> sex tinyint(1) not null default 0
-> );