3.18mysql五种表代码

create database petstore;
use petstore;
create table account (
userid char(6) not null ,
fullname varchar(10) not null ,
    password varchar(20) not null ,
    sex char(2) not null ,
    address varchar(40) null ,
    email varchar(20) null ,
    phone varchar(11) not null ,
    primary key (userid)
);


create table category(
catid char(10) not null ,
    catname varchar(20) null ,
    primary key (catid)
);


create table product (
productid char(10) not null ,
    catid char(10) not null ,
    name varchar(30) null ,
    descn text null,
    listprice decimal(10,2) null,
    unitcost decimal(10,2) null,
    qty int(11) not null ,
    primary key (productid)
);


create table orders (
orderid int(11) not null auto_increment,
    userid char(6) not null ,
    orderdate datetime not null ,
    totalprice decimal(10,2) default null ,
    status tinyint(1) default null ,
    primary key (orderid)
);


create table lineitem(
orderid int(11) not null ,
    itemid char(10) not null ,
    quantity int(11) not null ,
    unitprice decimal(10,2) not null ,
    primary key (orderid,itemid)
);
温馨提示:本文最后更新于2024-03-18 17:09:04,某些文章具有时效性,若有错误或已失效,请在下方留言或联系站长
© 版权声明
THE END
喜欢就支持一下吧
点赞9 分享
相关推荐
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情

    暂无评论内容