SQL教学数据库各表结构

更新时间:2024-06-05 09:01:01 阅读量: 综合文库 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

Huazhong University of Science and Technology

Wuhan, Hubei, 430074, P.R.China 中华人民共和国

湖北 武汉

SQL教学数据库各表结构

customer顾客表 序号 1 2 3 4

employee员工表 序号 1 2 3 4 5 6 7 8 9 10

地址:武汉市洪山区珞瑜路1037号 邮编:430074

第1页,共4页

字段名 customer_id customer_name address telphone 含义 顾客ID 顾客名 地址 电话 类型与长度 char(5) char(8) varchar(50) char(12) 字段名 employee_id employee_name sex birth_date hire_date address telephone wages department_id resume 含义 员工ID 员工名 性别 生日 雇用日期 地址 电话 工资 部门ID 简历 类型与长度 char(4) char(8) char(2) datetime datetime varchar(50) char(12) money char(4) text Huazhong University of Science and Technology

Wuhan, Hubei, 430074, P.R.China 中华人民共和国

湖北 武汉

goods_classification商品分类表 序号 1 2 3 4

sell_order销售定单表 序号 1 2 3 4 5 6 7 8 9 10 11 12

地址:武汉市洪山区珞瑜路1037号 邮编:430074

第2页,共4页

字段名 classification_id classification_name classification_description class_picture 含义 分类号 分类名 分类描述 同类图片 类型与长度 char(6) char(12) varchar(50) image 字段名 order_id1 goods_id order_num employee_id class_picture custom_id transporter_id discount order_date send_date arriver_date cost 含义 定单ID 商品ID 定单数 员工ID 同类图片 顾客ID 运输商ID 折扣 定单日期 发货日期 到货日期 费用 类型与长度 char(6) char(6) float char(4) image char(5) char(4) float datetime datetime datetime money Huazhong University of Science and Technology

Wuhan, Hubei, 430074, P.R.China 中华人民共和国

湖北 武汉

Transporter运输商表 序号 1 2 3 4 5

Department部门表 序号 1 2 3 4

Goods商品表 序号 1 2 3 4 5 6 7

地址:武汉市洪山区珞瑜路1037号 邮编:430074

第3页,共4页

字段名 transporter_id transport_name linkman_name address telephone 含义 运输商ID 运输商名称 联系人名 地址 电话 类型与长度 char(4) varchar(50) char(8) varchar(50) char(20) 字段名 department_id department_name manager depart_description 含义 部门ID 部门名 经理 部门描述 类型与长度 char(4) char(8) char(8) varchar(50) 字段名 goods_id goods_name classification_id supplier_id unit_price stock_quantity order_quantity 含义 商品ID 商品名 分类ID 供应商ID 单价 库存量 定单量 类型与长度 char(6) varchar(50) char(6) char(4) money float float Huazhong University of Science and Technology

Wuhan, Hubei, 430074, P.R.China 中华人民共和国

湖北 武汉

purchase_order采购定单表 序号 1 2 3 4 5 6 7 8 9 10 11

Supper供货商表 序号 1 2 3 4 5

地址:武汉市洪山区珞瑜路1037号 邮编:430074

第4页,共4页

字段名 order_id2 goods_id purchase_num discount employee_id supplier_id transporter_id order_date send_date arrival_date cost 含义 定单ID 商品ID 采购数 折扣 员工ID 供货商ID 运输商ID 定单日期 发货日期 到货日期 费用 类型与长度 char(6) char(6) float float char(4) char(6) char(6) datetime datetime datetime money 字段名 supper_id supper_name linkman_name address telephone 含义 供货商ID 供货商名 联系人 地址 电话 类型与长度 char(5) varchar(50) char(8) varchar(50) char(12)

本文来源:https://www.bwwdw.com/article/0ii6.html

Top