第二天ci项目规划 数据库设计

商品 + 用户 + 订单

数据库设计思想和方法

  1. 关于商品品牌 ,分类 ,属性 如何表示 用一个字段 还是再设计一张表 品牌和商品 是一种信息 还是两种信息 一张表一般只保存一种信息
  2. 品牌和商品能否独立分开 二者生命周期是否一致
  3. 表与表之间的关系
    1. 一对一 A中一条记录 在B中对应的最多只有一条 反之亦然
    2. 一对多 A中一条记录在b中对应N条 反之只有一条
    3. 多对多 A中记录在b中对应的有N条 反之有m条
    4. 分类的层级关系
      1. 使用path 自引用
    5. 商品属性信息保存 商品与属性独立存储 attribute表属性与商品表关系 多对多 简化为两个一对多关系 goods_attr另attribute有type需要一张表
    6. 订单设计 一个订单 可包含多种商品 一个商品 可能有多个订单 订单和商品之间多对多 应该在添加一张表表示他们之间关联联系

      drop table if exists attr;

    drop table if exists brand;

    drop table if exists category;

    drop table if exists goods;

    drop table if exists goods_attr;

    drop table if exists goods_type;

    drop table if exists orde_rinfo;

    drop table if exists "order";

    drop table if exists user;

    /==============================================================/
    /* Table: attr /
    /
    ==============================================================*/
    create table attr
    (
    attr_id integer not null auto_increment,
    attr_name varbinary(10) not null,
    input_type integer not null,
    "values" varchar(10) not null,
    type_id integer not null,
    primary key (attr_id)
    )
    engine = MYISAM;

    /==============================================================/
    /* Table: brand /
    /
    ==============================================================*/
    create table brand
    (
    brand_id integer not null auto_increment,
    brand_name varchar(10),
    primary key (brand_id)
    )
    engine = MYISAM;

    /==============================================================/
    /* Table: category /
    /
    ==============================================================*/
    create table category
    (
    cat_id integer not null auto_increment,
    cat_name varchar(10) not null,
    parent_id integer not null,
    primary key (cat_id)
    )
    engine = MYISAM;

    /==============================================================/
    /* Table: goods /
    /
    ==============================================================*/
    create table goods
    (
    goods_id integer not null auto_increment,
    goods_name varchar(10) not null,
    market_price decimal(10,2) not null,
    shop_price decimal(10,2) not null,
    goods_img char(10) not null,
    goods_number integer not null,
    goods_desc text(100) not null,
    brand_id integer not null,
    cat_id integer not null,
    primary key (goods_id)
    )
    engine = MYISAM;

    /==============================================================/
    /* Table: goods_attr /
    /
    ==============================================================*/
    create table goods_attr
    (
    rec_id integer not null auto_increment,
    goods_id integer not null,
    attr_id integer not null,
    value char(10) not null,
    primary key (rec_id)
    )
    engine = MYISAM;

    /==============================================================/
    /* Table: goods_type /
    /
    ==============================================================*/
    create table goods_type
    (
    type_id integer not null auto_increment,
    type_name varbinary(30) not null,
    primary key (type_id)
    )
    engine = MYISAM;

    /==============================================================/
    /* Table: orde_rinfo /
    /
    ==============================================================*/
    create table orde_rinfo
    (
    red_id integer not null auto_increment,
    order_id integer not null,
    goods_id integer not null,
    primary key (red_id)
    )
    engine = MYISAM;

    /==============================================================/
    /* Table: "order" /
    /
    ==============================================================*/
    create table "order"
    (
    order_id integer not null,
    user_id integer,
    order_sn char(10) not null,
    order_tome integer not null,
    total_price decimal(10,2) not null,
    primary key (order_id)
    )
    engine = MYISAM;

    /==============================================================/
    /* Table: user /
    /
    ==============================================================*/
    create table user
    (
    user_id integer not null auto_increment,
    name varchar(10) not null,
    password char(10) not null,
    email varchar(10) not null,
    primary key (user_id)
    )
    engine = MYISAM;

    alter table attr add constraint FK_Reference_5 foreign key (type_id)
    references goods_type (type_id) on delete restrict on update restrict;

    alter table goods add constraint FK_Reference_1 foreign key (brand_id)
    references brand (brand_id) on delete restrict on update restrict;

    alter table goods add constraint FK_Reference_2 foreign key (cat_id)
    references category (cat_id) on delete restrict on update restrict;

    alter table goods_attr add constraint FK_Reference_3 foreign key (goods_id)
    references goods (goods_id) on delete restrict on update restrict;

    alter table goods_attr add constraint FK_Reference_4 foreign key (attr_id)
    references attr (attr_id) on delete restrict on update restrict;

    alter table orde_rinfo add constraint FK_Reference_7 foreign key (goods_id)
    references goods (goods_id) on delete restrict on update restrict;

    alter table orde_rinfo add constraint FK_Reference_8 foreign key (order_id)
    references "order" (order_id) on delete restrict on update restrict;

    alter table "order" add constraint FK_Reference_6 foreign key (user_id)
    references user (user_id) on delete restrict on update restrict;

第二天ci项目规划 数据库设计的更多相关文章

  1. 第二天ci项目规划 前后台分离

    第二天ci项目规划 前后台分离 1/31/2016 2:40:26 PM 前后台 表面上看前后台不同网站 但是数据是他们之间的联系要完成结构完整项目 设计好前后台 基于mvc框架 前后台那些地方不同 ...

  2. HNU_团队项目_数据库设计感想_个人感想

    数据库设计感想  个人的一点心得体会 最重要的放在最前面——讨论开会时的123经验 开会前对会议目的及方式要有所考虑: 不要随意无目的开会: 遵守时间,控制会议时间长度: 会议主持人要维持会议只需,有 ...

  3. Django 博客项目01 数据库设计与验证码校验+Ajax登录

    数据库设计 from django.db import models from django.contrib.auth.models import AbstractUser class UserInf ...

  4. [ci]项目规划-后续

      几个方面来写   1,搭建gitlab 配邮箱 域名等使之好用 2,搭建jenkins –yum,安装常见插件 3,搭建sonar,汉化 4,安装sonar-scanner   0,实现sonar ...

  5. MySQL数据分析-(5)数据库设计之ER模型

    大家好,我是jacky,很高兴跟大家分享本课时的内容,从本节课开始,就开始了我们第二章的学习,第一章我们抛出了若干问题,从第二章开始往后,都是解决问题的一个过程: 第一章的案例中,我们拿手机销售公司举 ...

  6. 15套java互联网架构师、高并发、集群、负载均衡、高可用、数据库设计、缓存、性能优化、大型分布式 项目实战视频教程

    * { font-family: "Microsoft YaHei" !important } h1 { color: #FF0 } 15套java架构师.集群.高可用.高可扩 展 ...

  7. 常见电商项目的数据库表设计(MySQL版)

    转自:https://cloud.tencent.com/developer/article/1164332 简介: 目的: 电商常用功能模块的数据库设计 常见问题的数据库解决方案 环境: MySQL ...

  8. 小福bbs—项目系统设计与数据库设计

    这个作业属于哪个课程 班级链接 这个作业要求在哪里 作业要求的链接 团队名称 小福bbs 这个作业的目标 实现对校园论坛软件的制作,使其能够发布帖子,查看信息等 作业的正文 小福bbs--项目需求分析 ...

  9. T-MAX—项目系统设计与数据库设计

    团队作业第四次-项目系统设计与数据库设计 这个作业属于哪个课程 2019秋福大软件工程实践Z班 这个作业要求在哪里 团队作业第四次-项目系统设计与数据库设计 团队名称 T-MAX 这个作业的目标 在开 ...

随机推荐

  1. 网络第二节——AFNworking

    /** 要使用常规的AFN网络访问 AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; ...

  2. iOS中RSA加密详解

    先贴出代码的地址,做个说明,因为RSA加密在iOS的代码比较少,网上开源的也很少,最多的才8个星星.使用过程中发现有错误.然后我做了修正,和另一个库进行了整合,然后将其支持CocoaPod. http ...

  3. windows XP 神key

    微软内部泄露的XP的CD-KEY和无限次激活码!亲测!!! Windows XP专业版最新注册码HTXH6-2JJC4-CDB6C-X38B4-C3GF3RT4H2-8WYHG-QKK6K-WWHJ2 ...

  4. 中文编程语言Z语言开源正式开源!!!

    (Z语言基于.NET环境,源码中有很多高技术的代码,让更多的人知道对大家有会有很好的帮助,请管理员一点要批准放在首页) 本人实现的中文编程语言Z语言现在正式开源,采用LGPL协议. 编译器核心的网址为 ...

  5. ASCII码、Unicode码 转中文

    ASCII码.Unicode码 转中文 在最近工作中遇到了一些汉字编码转换的处理,可以通过正则表达式及转换字符来实现转成中文 Unicode转换示例 通常为10位编码, 通过digit参数传入 pri ...

  6. web项目中各种路径的获取

    以工程名为/DemoWeb为例: 访问的jsp为:http://localhost:8080/DemoWeb/test/index.jsp 1 JSP中获得当前应用的相对路径和绝对路径 (1)得到工程 ...

  7. maven学习(上)- 基本入门用法

    一.下载及安装 1.1 下载maven 3.1.1 先到官网http://maven.apache.org/download.cgi 下载最新版本(目前是3.1.1 ),下载完成后,解压到某个目录(本 ...

  8. MD5加密

    public string Second_MD5(string str) { MD5 md5 = MD5.Create();//创建MD5实例 byte[] strbyte = Encoding.UT ...

  9. redhat 配置本地yum源163yum源epel 源,无需卸载yum!无须拷贝ISO,愿网上少一点垃圾教程误人子弟

    都知道redhat不收费,但是其yum服务是要收费的,不想出钱那就自己配置yum源就好了. 首先,博主之前也没用过redhat,第一次用yum装包的时候提示什么没注册之类的,balaba一大堆,然后就 ...

  10. 使用javax.servlet.http.Part类上传文件

    使用的是Servlet 3.0 新的特征标注(Annotaion)类描述部署,一些低版本的服务器需要使用标准依赖部署描述文件(web.xml)来部署,另外Part也是Java EE 6.0新增的类,P ...