数据库第十三次作业

数据库第十三次作业

——电子商城项目

  • 安装并配置MySQL
  1. 打开控制台:
  2. 登录MySQL:

 

 

  • 数据库、表的基本操作
  1. 创建电子商城数据库“mall_姓名全拼”:
  2. 使用电子商城数据库:use mall_qiufaqing;
  3. 创建用户表“user_姓名全拼”,表中字段信息如下:

 create table user_qiufaqing(
phone char(11) primary key comment "注册手机号",
username varchar(20) not null unique comment "用户名",
password varchar(20) not null comment "密码",
question text not null comment "找回密码问题",
answer text not null comment "找回密码问题答案"
);

字段名

数据类型

长度

主、外键

其他约束

备注信息

phone

char

11

主键

注册手机号

username

varchar

20

非空,唯一

用户名

password

varchar

20

非空

密码

question

text

非空

找回密码问题

answer

text

非空

找回密码问题答案

 

 

  1. 创建卖家信息表“seller_姓名全拼”,表中字段信息如下:

字段名

数据类型

长度

主、外键

其他约束

备注信息

id

char

16

主键

卖家ID(S_DATE_XXXXX)

phone

char

11

外键(user.phone)

非空,唯一

注册手机号

open_date

date

非空

开业时间

name

varchar

50

非空

店铺名称

nickname

varchar

30

非空

掌柜昵称

 create table seller_qiufaqing(
 id char(16) primary key comment "卖家ID(S_DATE_XXXXX)",
 phone char(11) not null unique comment "注册手机号",
 open_date date not null comment "开业时间",
 name varchar(50) not null comment "店铺名称",
 nickname varchar(30) not null comment "掌柜昵称",
 constraint fk_phone foreign key (phone) references user_qiufaqing(phone)
 );

 

 

  1. 创建买家信息表“buyer_姓名全拼”,表中字段信息如下:

字段名

数据类型

长度

主、外键

其他约束

备注信息

id

char

16

主键

买家ID(B_DATE_XXXXX)

phone

char

11

外键(user.phone)

非空,唯一

注册手机号

nickname

varchar

30

非空

买家昵称

gender

enum(“miss”,”mr”)

默认miss

性别

height

int

3

身高cm

weight

double

体重kg

create table buyer_qiufaqing(
id char(16) primary key comment "买家ID(B_DATE_XXXXX)",
phone char(11) not null unique comment "注册手机号",
nickname varchar(30) not null comment "买家昵称",
gender enum("miss","mr") default"miss" comment "性别",
height int(3) comment "身高cm",
weight double comment "体重kg",
constraint fk_buyer_qiufaqing_phone foreign key (phone) references user_qiufaqing(phone)
);

 

 

  1. 创建地址表“address_姓名全拼”,表中字段信息如下:

字段名

数据类型

长度

主、外键

其他约束

备注信息

id

char

16

主键

地址ID (A_DATE_XXXXX)

buyer_id

char

16

外键(buyer.id)

非空

买家ID

contact_phone

char

11

非空

收货人联系方式

detail_address

text

非空

详细地址

is_default

enum(“yes”,”no”)

默认 no

是否默认地址

create table address_qiufaqing(
id char(16) primary key comment "地址ID (A_DATE_XXXXX)",
buyer_id char(16) not null comment "买家ID",
contact_phone char(11) not null comment "收货人联系方式",
detail_address text not null comment "详细地址",
is_default enum("yes","no") default"no" comment "是否默认地址",
constraint fk_address_qiufaqing_buyer_id foreign key (buyer_id) references buyer_qiufaqing(id)
 );

 

 

  1. 创建产品种类表“product_type_姓名全拼”,表中字段信息如下:

字段名

数据类型

长度

主、外键

其他约束

备注信息

code

char

6

主键

产品种类编码(TXXXXX)

name

varchar

30

非空

产品种类名称

create table product_type_qiufaqing(
code char(6) primary key comment "产品种类编码(TXXXXX)",
name varchar(30) not null comment "产品种类名称"
);

 

 

  1. 创建产品表“product_姓名全拼”,表中字段信息如下:

字段名

数据类型

长度

主、外键

其他约束

备注信息

id

char

16

主键

产品编号(P_DATE_XXXXX)

seller_id

char

16

外键(seller.id)

非空

卖家ID

type_id

char

6

外键(product_type.code)

非空

产品种类编码

name

varchar

100

非空

产品名称

picture

text

产品展示图

unit_price

double

非空

单价

quantity

int

10

默认 100

库存数量

 create table product_qiufaqing(
id char(16) primary key comment "产品编号(P_DATE_XXXXX)",
seller_id char(16) not null comment "卖家ID",
type_id char(6) not null comment "产品种类编码",
name varchar(100) not null comment "产品名称",
picture text comment "产品展示图",
unit_price double not null comment "单价",
quantity int(10) default"100" comment "库存数量",
constraint fk_seller_id foreign key (seller_id) references seller_qiufaqing(id),
constraint fk_type_id foreign key (type_id) references product_type_qiufaqing(code)
);

 

 

  1. 创建订单表“order_姓名全拼”,表中字段信息如下:

字段名

数据类型

长度

主、外键

其他约束

备注信息

id

char

16

主键

订单编号(O_DATE_XXXXX)

seller_id

char

16

外键(seller.id)

非空

卖家ID

buyer_id

char

16

外键(buyer.id)

非空

买家ID

address_id

char

16

外键(address.id)

非空

地址ID

total_price

double

默认0

总价

actrual_payment

double

默认0

实付款

 create table order_qiufaqing(
id char(16) primary key comment "订单编号(O_DATE_XXXXX)",
seller_id char(16) not null comment "卖家ID",
buyer_id char(16) not null comment "买家ID",
address_id char(16) not null comment "地址ID",
total_price double default"0" comment "总价",
actrual_payment double default"0" comment "实付款",
constraint fk_order_qiufaqing_seller_id foreign key (seller_id) references seller_qiufaqing(id),
constraint fk_order_qiufaqing_buyer_id foreign key (buyer_id) references buyer_qiufaqing(id),
constraint fk_address_id foreign key (address_id) references address_qiufaqing(id)
);

 

 

  1. 创建订单详情表“order_detail_姓名全拼”,表中字段信息如下:

字段名

数据类型

长度

主、外键

其他约束

备注信息

id

int

10

主键

自增

order_id

char

16

外键(order.id)

非空

订单编号

product_id

char

16

外键(product.id)

非空

产品编号

purchase_quantity

int

3

默认1

采购数量

discount_unit_price

double

非空

产品折后价

 create table order_detail_qiufaqing(
 id int(10) primary key auto_increment,
 order_id char(16) not null comment "订单号",
 product_id char(16) not null comment "产品编号",
 purchase_quantity int(3) default"1" comment "采购数量",
 discount_unit_price double not null comment "产品折后价",
 constraint fk_order_detail_order_id foreign key (order_id) references order_qiufaqing(id),
 constraint fk_order_detail_qiufaqing_product_id foreign key (product_id) references  product_qiufaqing(id)
 );

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值