drop table if exists books;
create table books{
id int not null auto_increment;
bookname char(50) not null default '',
publisher char(80) not null default'',
author char(50) not null default'',
price double not null default 0.00,
ptime int not null default 0,
pic char(40) not null default,
detail text,
primary key(id)
};
2 回答
qq_大寒_2
TA贡献173条经验 获得超185个赞
解决了。。
drop table if exists books;
create table books(
id int not null auto_increment,
bookname char(50) not null default '',
publisher char(80) not null default'',
author char(50) not null default'',
price double not null default 0.00,
ptime int not null default 0,
pic char(40) not null default '',
detail text,
primary key(id)
);
添加回答
举报
0/150
提交
取消