燕十八php公益讲堂yy频道:88354001
商品表
库名shoping
表名 commodity(商品)
列名称
列类型
默认值
是否主键
Comm_id
Int
PRI
Comm_name
Char(20)
Comm_price
Decimal(7,2)
Comm_prodate(生产日期)
Date
0000-00-00
Comm_expgdate(过期日期
Date
0000-00-00
Comm_fact(厂商)
Char(15)
Comm_brief(商品简介)
Varchar(500)
创建表
Create table commodity (
Comm_id int not null primary key auto_increment,
Comm_name char(20) not null default '',
Comm_price decimal(7,2) not null default 0.00,
Comm_pridodate date not null default '0000-00-00',
Comm_expgdate date not null default '0000-00-00',
Comm_fact char(15) not null default '',
Comm_brief varchar(500) not null default ''
)engine