当前位置 鱼摆摆网 > 问答 > 淘宝 >
网上购物系统数据库设计(网上购物系统数据库设计过程中的需求分析报告)
栏目:淘宝 时间:2023-09-20 23:53购物网站数据库设计
要这样,这样你会有无数多的表,而且以后新的一个产品时候非常麻烦,如果要属于新的类别,而且还会因为避免数据库太复杂而使得许多不同类的产品归在一个类。而且你的程序很麻烦,要为每个类编写不同程序,因为数据表名不同。 应该用下面的办法,主要使用四个表存储所有类别的商品:第一、类别名称表,字段有类别ID,类别名称1 电脑2 洗衣机第二、类别属性表,字段有:类别ID,属性ID,属性名称1 1 CPU1 2 内存1 3 屏幕尺寸2 1 容量2 2 类型第三、商品名称表,字段有:商品ID,类别ID1 12 13 24 2第四、商品属性表,字段有:商品ID,属性ID,属性值1 1 P41 2 128M1 3 CRT 142 1 P42 2 512M2 3 LCD193 1 9公斤3 2 滚筒4 1 8公斤4 2 波轮上面定义了四个商品,商品ID为1~4,分别是128M、512M内存的电脑,和9公斤滚筒、8公斤的波轮洗衣机。 这样定义的数据库结构,可以包含任何商品,一般不会改变,那么程序也就无需改变,定义新的产品、或者修改现有商品只需要在程序界面有操作员点点鼠标。
一、概述 网上购物店的数据模型,主要模式有产品:product ,帐户:Account,定单:Order。和产品相关的表有category ,product,item, inventory, supplier;和用户相关表有的account ,signon,profile;和定单相关的表有orders,orderstatus,lineitem ,整体关系如下.二、帐户模型帐户模型,记录者用户的登录名称,密码。以及个人信息如地址,性名,电话等,还有它在系统中的profile信息。表有Account 主键是userID,它记录用户的基本信息,如email,name等。Signon 表记录者userID和password,Profile表记录者用户的登录系统的系统设置。可以根据用户的类型,显示不同的登录信息。(1)account表create table account (userid varchar(80) not null,email varchar(80) not null,name varchar(80) not null,status char(2) null,addr1 varchar(80) not null,addr2 varchar(40) null,city varchar(80) not null,state varchar(80) not null,zip varchar(20) not null,country varchar(20) not null,phone varchar(80) not null,constraint pk_account primary key (userid))说明:primary key是userID,它记录帐户的基本信息。(2)Signon 表create table signon (username varchar(25) not null,password varchar(25) not null,constraint pk_signon primary key (username))说明:记录登录名和密码。(3)Profile表create table profile (userid varchar(80) not null,langpref varchar(80) not null,favcategory varchar(30),mylistopt int,banneropt int,constraint pk_profile primary key (userid))说明:用户的登录信息,方便个性化定制。(4)Bannerdata 表create table bannerdata (favcategory varchar(80) not null,bannername varchar(255) null,constraint pk_bannerdata primary key (favcategory))说明:记录不同的登录信息。三、产品模型产品的模型主要有分类,它是产品的大类。表category 就是记录分类名称,描述信息。Product记录每个产品的基本信息,包括产品名称,和产品的描述。它是一对多的关系。Supplier 表记录产品的提供者信息,包括提供者的名称,地址,状态等。Item 记录产品的提供者,产品ID,价格,状态。Inventory 表记录产品的数量。关系如下:(1) category表create table category (catid char(10) not null,name varchar(80) null,descn varchar(255) null,constraint pk_category primary key (catid))(2)product表create table product (productid char(10) not null,category char(10) not null,name varchar(80) null,descn varchar(255) null,constraint pk_product primary key (productid),constraint fk_product_1 foreign key (category)references category (catid))(3) item表create table item (itemid char(10) not null,productid char(10) not null,listprice decimal(10,2) null,.unitcost decimal(10,2) null,supplier int null,status char(2) null,attr1 varchar(80) null,attr2 varchar(80) null,attr3 varchar(80) null,attr4 varchar(80) null,attr5 varchar(80) null,constraint pk_item primary key (itemid),constraint fk_item_1 foreign key (productid)references product (productid),constraint fk_item_2 foreign key (supplier)references supplier (suppid))(4) inventory 表create table inventory (itemid char(10) not null,qty int not null)(5)supplier表create table inventory (suppid intnot nullnamevarchar(80)statuschar(2)attr1 varchar(80)attr2 varchar(80)cityvarchar(80)state varchar(80)zip char(6)phone varchar(80)constraint pk_supplier primary key (suppid),)四、定单模型定单记录用户的选择产品信息,数量,表主要有Orders,记录用户的地址,帐户信息,总金额。Orderstatus 记录定单状态。Lineitem 记录定单中的产品数量,单位价格,产品ID。(1)orders表create table orders (orderid int not null,userid varchar(80) not null,orderdate date not null,shipaddr1 varchar(80) not null,shipaddr2 varchar(80) null,shipcity varchar(80) not null,shipstate varchar(80) not null,shipzip varchar(20) not null,shipcountry varchar(20) not null,billaddr1 varchar(80) not null,billaddr2 varchar(80) null,billcity varchar(80) not null,billstate varchar(80) not null,billzip varchar(20) not null,billcountry varchar(20) not null,courier varchar(80) not null,totalprice number(10,2) not null,billtoname varchar(80) not null,shiptoname varchar(80) not null,creditcard varchar(80) not null,exprdate char(7) not null,cardtype varchar(80) not null,locale varchar(20) not null,constraint pk_orders primary key (orderid),constraint fk_orders_1 foreign key (userid)references account (userid))定单的信息。(2)Orderstatus表create table orderstatus (orderid int not null,linenum int not null,timestamp date not null,status char(2) not null,constraint pk_orderstatus primary key (orderid, linenum),constraint fk_orderstatus_1 foreign key (orderid)references orders (orderid))定单中的产品状态(3)lineitem表create table lineitem (orderid int not null,linenum int not null,itemid char(10) not null,quantity int not null,unitprice number(10,2) not null,constraint pk_lineitem primary key (orderid, linenum),constraint fk_lineitem_1 foreign key (orderid)references orders (orderid) )
问问题还骂人,没见过,谁会回答你
一、概述 网上购物店的数据模型,主要模式有产品:product ,帐户:Account,定单:Order。和产品相关的表有category ,product,item, inventory, supplier;和用户相关表有的account ,signon,profile;和定单相关的表有orders,orderstatus,lineitem ,整体关系如下.二、帐户模型帐户模型,记录者用户的登录名称,密码。以及个人信息如地址,性名,电话等,还有它在系统中的profile信息。表有Account 主键是userID,它记录用户的基本信息,如email,name等。Signon 表记录者userID和password,Profile表记录者用户的登录系统的系统设置。可以根据用户的类型,显示不同的登录信息。(1)account表create table account (userid varchar(80) not null,email varchar(80) not null,name varchar(80) not null,status char(2) null,addr1 varchar(80) not null,addr2 varchar(40) null,city varchar(80) not null,state varchar(80) not null,zip varchar(20) not null,country varchar(20) not null,phone varchar(80) not null,constraint pk_account primary key (userid))说明:primary key是userID,它记录帐户的基本信息。(2)Signon 表create table signon (username varchar(25) not null,password varchar(25) not null,constraint pk_signon primary key (username))说明:记录登录名和密码。(3)Profile表create table profile (userid varchar(80) not null,langpref varchar(80) not null,favcategory varchar(30),mylistopt int,banneropt int,constraint pk_profile primary key (userid))说明:用户的登录信息,方便个性化定制。(4)Bannerdata 表create table bannerdata (favcategory varchar(80) not null,bannername varchar(255) null,constraint pk_bannerdata primary key (favcategory))说明:记录不同的登录信息。三、产品模型产品的模型主要有分类,它是产品的大类。表category 就是记录分类名称,描述信息。Product记录每个产品的基本信息,包括产品名称,和产品的描述。它是一对多的关系。Supplier 表记录产品的提供者信息,包括提供者的名称,地址,状态等。Item 记录产品的提供者,产品ID,价格,状态。Inventory 表记录产品的数量。关系如下:(1) category表create table category (catid char(10) not null,name varchar(80) null,descn varchar(255) null,constraint pk_category primary key (catid))(2)product表create table product (productid char(10) not null,category char(10) not null,name varchar(80) null,descn varchar(255) null,constraint pk_product primary key (productid),constraint fk_product_1 foreign key (category)references category (catid))(3) item表create table item (itemid char(10) not null,productid char(10) not null,listprice decimal(10,2) null,.unitcost decimal(10,2) null,supplier int null,status char(2) null,attr1 varchar(80) null,attr2 varchar(80) null,attr3 varchar(80) null,attr4 varchar(80) null,attr5 varchar(80) null,constraint pk_item primary key (itemid),constraint fk_item_1 foreign key (productid)references product (productid),constraint fk_item_2 foreign key (supplier)references supplier (suppid))(4) inventory 表create table inventory (itemid char(10) not null,qty int not null)(5)supplier表create table inventory (suppid intnot nullnamevarchar(80)statuschar(2)attr1 varchar(80)attr2 varchar(80)cityvarchar(80)state varchar(80)zip char(6)phone varchar(80)constraint pk_supplier primary key (suppid),)四、定单模型定单记录用户的选择产品信息,数量,表主要有Orders,记录用户的地址,帐户信息,总金额。Orderstatus 记录定单状态。Lineitem 记录定单中的产品数量,单位价格,产品ID。(1)orders表create table orders (orderid int not null,userid varchar(80) not null,orderdate date not null,shipaddr1 varchar(80) not null,shipaddr2 varchar(80) null,shipcity varchar(80) not null,shipstate varchar(80) not null,shipzip varchar(20) not null,shipcountry varchar(20) not null,billaddr1 varchar(80) not null,billaddr2 varchar(80) null,billcity varchar(80) not null,billstate varchar(80) not null,billzip varchar(20) not null,billcountry varchar(20) not null,courier varchar(80) not null,totalprice number(10,2) not null,billtoname varchar(80) not null,shiptoname varchar(80) not null,creditcard varchar(80) not null,exprdate char(7) not null,cardtype varchar(80) not null,locale varchar(20) not null,constraint pk_orders primary key (orderid),constraint fk_orders_1 foreign key (userid)references account (userid))定单的信息。(2)Orderstatus表create table orderstatus (orderid int not null,linenum int not null,timestamp date not null,status char(2) not null,constraint pk_orderstatus primary key (orderid, linenum),constraint fk_orderstatus_1 foreign key (orderid)references orders (orderid))定单中的产品状态(3)lineitem表create table lineitem (orderid int not null,linenum int not null,itemid char(10) not null,quantity int not null,unitprice number(10,2) not null,constraint pk_lineitem primary key (orderid, linenum),constraint fk_lineitem_1 foreign key (orderid)references orders (orderid) )
问问题还骂人,没见过,谁会回答你

数据库设计:购物系统包括数据流图和数据字典
流程图可以用microsoft office里自带的microsoft office visio做,选择左侧的软件和数据库,然后在右侧“其他模板”里选择“数据流模型图”,就可以进入界面画数据流图了。左侧选择你想要的图形拖至右侧格子框中,大小可以调,双击可以在里面输入文字,一个小tip:“数据存储”框中输入文字双击时行不通的,先左键单击“数据存储”框,出现上下左右四个小箭头,左键单击右边的小箭头就可以出现一个框让你输,此时无需任何点击就可以输入了。
第四章的可以参考 参考资料: http://vip.book.sina.com.cn/pub/book.php?book=580421
第四章的可以参考 参考资料: http://vip.book.sina.com.cn/pub/book.php?book=580421

用oracle数据库该如何设计网上购物系统的数据库呢?有急用
6| 5|7|能够使用Q联系我咨询1|有机会可以实现你的目标5|有 +q6|假如你有其他的问题也能够求助于我们1|我们能够为你写一份适用于您需求的参考代码 5|依据你说的需求
如果是小型的购物网站,不建议用oracle作为数据库。
有的 网上购物
如果是小型的购物网站,不建议用oracle作为数据库。
有的 网上购物

我买了个系统,为网上购物系统,用java写的,前台是用jsp写的,后台用mysql数据库,
一、eclispse是写开发代码的软件,最简单的理解方法就是,你用记事本写文字,文字等于编程语言的代码,记事本就等于eclipse。明白? 二、tomcat是你这个系统运行所需要的服务器,现在很多小型中型网站大多用tomcat做服务器。三、jdk是英文全程是Java Development Kit。四、mysql manager是你的数据库管理程序,你只要打开他可以不用登陆数据库空间就可以管理数据库。使用方法网上很多。五、mysql是数据库软件,相当于其他的oracal、sqlserver什么的,只不过比这两款小,但是速度快。原理:jsp是负责前台表示层,也就是你看到的网页内容,java是业务处理层,实际上jsp和javabean都属于java语言。具体举例如下:(以订购系统为例)一、点击产品浏览,product_list.jsp,(此页面显示所有的CD产品),页面发送“查找产品类型=CD”的指令给javaBean,javaBean负责建立数据库连接和获取该指令,然后将“查找产品类型=CD”的指令传给MYsql去执行具体的查询操作。二、mysql将获取的结果集返回给javaBean,javaBean将此结果返回给jsp页面,jsp遍历集合形成产品的列表页。简化流程jsp->javaBean->mysql->javaBean->jsp.其实最好是jsp+servlet(控制器)+javabean+mysql这种写法。 明白否?
你可以把你这个项目原代码给我发份吗?谢谢
你可以把你这个项目原代码给我发份吗?谢谢

淘宝购物车的数据库怎么设计
消费表:【消费id,用户id,总计】; 明细表:【id,消费id,商品名称,商品数量,商品价格,小计】
无非两种: 一种就是把购物车里的商品存在数据库里另一种就是用session或者cookie这种方式存储在客户端。如果你是使用.net开发,那么可以直接把添加购物车信息的函数放到“加入购物车”按钮的事件里,如果是asp这种的,你可以做一个加入购入车动作的页面,用来处理商品加入购物车的动作。 这个页面接受商品信息和来自页面的url,处理完毕直接response回去就可以了!
购物车信息是放到Session里的,Session是存放在数据库里的 浏览过的信息是放到cookie里的
不懂啊
无非两种: 一种就是把购物车里的商品存在数据库里另一种就是用session或者cookie这种方式存储在客户端。如果你是使用.net开发,那么可以直接把添加购物车信息的函数放到“加入购物车”按钮的事件里,如果是asp这种的,你可以做一个加入购入车动作的页面,用来处理商品加入购物车的动作。 这个页面接受商品信息和来自页面的url,处理完毕直接response回去就可以了!
购物车信息是放到Session里的,Session是存放在数据库里的 浏览过的信息是放到cookie里的
不懂啊

[ 标签:]
- 全部评论(0)

说点什么吧