菜单
  

      数据库中创建表的SQL语句

      用户表:

      create table users (

      id int primary key not null auto_increment,

      username varchar(40) unique not null,

      password varchar(40) not null,

      nickname varchar(40) not null,

      email varchar(100) unique not null,

      role varchar(10) not null,

      registtime timestamp,

    state int not null,

      activecode varchar(100)

    ); 

    商品表

    create table products(

       id varchar(100) primary key not null ,

       name varchar(40) unique not null,

       price double not null,

       category varchar(100) not null,

       description varchar(255),

       img varchar(100)

    );

    订单表

    create table orders(

       id varchar(100) primary key not null,

       totalmoney double not null,

       receiverinfo varchar(255) not null,

       ordertime timestamp,

       state int not null,

       user_id int not null,

       foreign key(user_id) references users(id)

    );

    考虑实体之间关系

    用户与订单存在 一对多关系 :在多方添加一方主键作为外键

    订单和商品存在 多对多关系 :创建第三张关系表,引用两方主键作为外键

    create table orderitem(来~自^751论+文.网www.751com.cn/

       order_id varchar(100) not null,

       product_id varchar(100) not null,

       buynum int not null,

       money double not null,

       foreign key(order_id) references orders(id),

       foreign key(product_id) references products(id)

    );

    4 网站总体设计

    4.1游客,用户,管理员的需求分析

      作为游客,能访问的页面包括:用户的注册,激活用户账号,用户登录(注册完以后),查看图书列表和查看图书详情。作为用户,能访问的页面包括:用户的注册,激活用户账号,用户登录,查看图书列表,查看图书详情,添加图书到购物车,查看购物车,修改购物车,生成订单(取消订单),在线支付。作为管理员,能够访问的页面包括:用户登录,添加图书,查看图书列表,查看图书详情。

  1. 上一篇:Android蜗牛教育网的设计+源代码
  2. 下一篇:android手机端远程管理助手的设计+源代码
  1. jsp+mysql学生选课信息系统设计与实现

  2. jsp+mysql电影推荐系统的设计与实现

  3. jsp+mysql学生实践创新项目管理系统设计与实现

  4. jsp+mysql停车场车辆管理系统的设计与实现

  5. jsp+mysql运动会管理系统设计与实现

  6. jsp+mysql制衣网站的设计与实现

  7. jsp+mysql知识产权代理服务系统的设计与实现

  8. 中考体育项目与体育教学合理结合的研究

  9. 当代大学生慈善意识研究+文献综述

  10. 十二层带中心支撑钢结构...

  11. 乳业同业并购式全产业链...

  12. 电站锅炉暖风器设计任务书

  13. 酸性水汽提装置总汽提塔设计+CAD图纸

  14. java+mysql车辆管理系统的设计+源代码

  15. 河岸冲刷和泥沙淤积的监测国内外研究现状

  16. 杂拟谷盗体内共生菌沃尔...

  17. 大众媒体对公共政策制定的影响

  

About

751论文网手机版...

主页:http://www.751com.cn

关闭返回