我已经为计算机清单创建了一个数据库。我的作业说我只能允许在“Dell”和“IBM”等字段中输入某些词。这是我创建表的方式:
Create table computer_inventory (
assetnumber int(10) not null default 0,
manufacturer char(3) ENUM('Dell', 'IBM', 'OtherCompany') NOT NULL default ' ',
originalcost decimal(12,2) not null default 0,
currentvalue decimal(12,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”的制造商。