我不断收到此代码错误。
错误 1064 (42000):您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在“默认”附近使用正确的语法,originalcost decimal(10,2) not null default 0,current at line 3
Create table computer_inventory (
assetnumber int(10) not null default 0,
manufacturer ENUM('Dell', 'IBM', ' ') NOT NULL, default ' ',
originalcost decimal(10,2) not null default 0,
currentvalue decimal(10,2) not null default 0,
boughtfrom varchar(20) not null default ' ',
instock tinyint(1) not null default 0,
currentuser varchar(20) not null default ' ',
userphonenum varchar(13) not null default ' ',
boughtdate datetime not null default '0000-00-00'
);
有什么建议么?
编辑我发现逗号在错误的地方。我必须犯一个错误,说“您必须输入“Dell”或“IBM””。有谁知道如何发送该错误?