建表出错
因为项目才接触数据库 要求建一个表我自己如下建立
create table techout
(
pronum int(6) not null primary key auto_increment,
techtype char(20) not null,
proname cahr(30) not null,
regdepart char(20) not null,
expertexam char(10) not null,
award char(30) not null,
personres char(20) not null,
);
老是报错 提示如下:
ERROR 1064 (42000):You have an error in your SQL syntax;check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 10
不知道是怎么回事了 我是参照网上的例子做的
先谢谢哈