當前位置:首頁 » 網購平台 » 購物網站資料庫
擴展閱讀
寧波奧德賽優惠價格 2021-03-15 14:26:02
丹尼斯購物卡能掛失么 2021-03-15 14:25:58
淘寶購物指紋驗證失敗 2021-03-15 14:24:44

購物網站資料庫

發布時間: 2021-03-14 20:45:43

購物網站資料庫問題

如果你不想那麼麻煩,可以設計在一張表中,品牌標識欄位。如
create table shoes (
id int not null auto_increment,#自增專id
brand_id int not null,#品牌屬ID

brand_name varchar(30),#品牌名稱
brand_type int,#品牌類型1-耐克,2-ad,3-李寧,4......
size decimal(4,2),#鞋子碼數
)
等等,可以根據實際情況添加欄位

㈡ 購物網站資料庫設計

一、概述
網上購物店的數據模型,主要模式有產品:proct ,帳戶:Account,定單:Order。和產品相關的表有category ,proct,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 就是記錄分類名稱,描述信息。Proct
記錄每個產品的基本信息,包括產品名稱,和產品的描述。它是一對多的關系。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)proct表
create table proct (
proctid char(10) not null,
category char(10) not null,
name varchar(80) null,
descn varchar(255) null,
constraint pk_proct primary key (proctid),
constraint fk_proct_1 foreign key (category)
references category (catid)
)
(3) item表
create table item (
itemid char(10) not null,
proctid 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 (proctid)
references proct (proctid),
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 int not null
name varchar(80)
status char(2)
attr1 varchar(80)
attr2 varchar(80)
city varchar(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)
)

㈢ 做一個網上網上購物網站,請問怎麼連接資料庫

你的程序全有了,你找到那個與資料庫鏈接文件就可以了

㈣ 購物網站的資料庫該怎麼設計,尤其是復雜商品分類的表該怎麼建立~~

DIV+CSS

㈤ 購物網站用什麼資料庫好啊

如果是剛起步的話access+ASP就夠用了,而且開發難度最小。以後壯大之後再換成SQL,mysql吧。
安全快捷,用mysql+php吧,難度稍大。

㈥ 關於購物網站的資料庫設計問題

不要這樣,這樣你會有無數多的表,而且以後新的一個產品時候非常麻煩,如果要屬於新的類別,而且還會因為避免資料庫太復雜而使得許多不同類的產品歸在一個類。而且你的程序很麻煩,要為每個類編寫不同程序,因為數據表名不同。

應該用下面的辦法,主要使用四個表存儲所有類別的商品:

第一、類別名稱表,欄位有
類別ID,類別名稱
1 電腦
2 洗衣機

第二、類別屬性表,欄位有:
類別ID,屬性ID,屬性名稱
1 1 CPU
1 2 內存
1 3 屏幕尺寸
2 1 容量
2 2 類型

第三、商品名稱表,欄位有:
商品ID,類別ID
1 1
2 1
3 2
4 2

第四、商品屬性表,欄位有:
商品ID,屬性ID,屬性值
1 1 P4
1 2 128M
1 3 CRT 14
2 1 P4
2 2 512M
2 3 LCD19
3 1 9公斤
3 2 滾筒
4 1 8公斤
4 2 波輪

上面定義了四個商品,商品ID為1~4,分別是128M、512M內存的電腦,和9公斤滾筒、8公斤的波輪洗衣機。

這樣定義的資料庫結構,可以包含任何商品,一般不會改變,那麼程序也就無需改變,定義新的產品、或者修改現有商品只需要在程序界面有操作員點點滑鼠。

㈦ 建立一個購物網站,資料庫中需要建立哪幾個表

用戶表
商品表
訂單表
這是最最基本的.少一張也不行.
復雜的話,龐大到幾百張表也不是不可能.

㈧ 做一個類似淘寶的購物商城資料庫需要哪些表

-----------------用戶信息-------------
-----------------系統代碼表-----------
---------------菜單信息--------------
-------------------用戶訂單專--------------
---------------訂單 項目信息-----------
----------------商品類屬別信息-------------
----------------產品信息-----------------
----------------公告信息----------------
---------------訂單-----------------
-------------------訂單詳情---------------

㈨ 一個購物網站資料庫

我 正好在做一個電子商務的網站 資料庫也基本建好 可以給你看看不過呢我這個電子商務的 資料庫比較簡單 但是 基本的功能 都可以實現了 也只是供參考哈了 你自己看看吧:CREATE table [User] --用戶表
(
Uid int identity(1,1) primary key,--用戶ID
--擁有的 商店 ID號
UName varchar(50),
UPass varchar(100),
UEmail varchar(50),--電子郵件
UTel varchar(50),--電話
UAdress varchar(100),--住址
UPastcode varchar(50),--郵編
UCreatetime datetime, --用戶創建日期
UOnline varchar(50), --用戶在線時間
UState tinyint,--用戶狀態
URemark text --備注信息
)create table Category --產品分類表
(
Cid int identity(1,1) primary key,
Ckindname varchar(100),--分類的名稱
--CParentID int--父分類ID
--CShowOrder int ,--顯示的順序
CRemark text --備注

)create table Proct --產品詳細信息表
(
Pid int identity(1,1) primary key,
Cid int references Category(Cid), --對應 分類表的 主鍵
PName varchar(100),--商品的名稱
PText text,--商品的說明信息
PImage varchar(50),--商品的圖片信息
PPrices money,--商品的價格
Uid int references [User](Uid),--所屬的主人 及用戶表的ID號
PCreatetime datetime,--商品的上架時間
PStock int,--庫存
PsellNum int ,--已經銷售的數量
--PLeaveMessage text,--瀏覽者(用戶)對商品的評價
PViewCount int,--商品被瀏覽的次數
PStatus tinyint,--狀態
PRemark text--備注
)
create table Orders --訂單表
(
OrderID int identity(1,1) primary key, --訂單編號
Uid int foreign key(Uid) references [User](Uid),--這個訂單所屬的主人
--Pid int ,--訂單中商品的信息
OCreatetime datetime,--創建的時間
OTotalNum int,--訂單中商品的總數量
OTotalMoney money,--訂單商品的 總價格
)create table OrdersItem --訂單表關聯信息表
(
OrderItemID int identity(1,1) primary key,
OrderID int references Orders(OrderID),--訂單表的訂單編號
Pid int references Proct(Pid),--關聯的 商品表ID
ONum int,--商品的數量
--OrderItemName varchar(100),--商品的名稱
--OrderItemNum int,--該商品的數量
--OrderItemPrices money,--該商品的單價
)create table ProctLeaveMessage --用戶 瀏覽者對商品的評論表
(
PLid int identity(1,1) primary key,
Pid int references Proct(Pid),--商品表中商品的ID號
Uid int references [User](Uid),--用戶表的用戶ID
IP varchar(50),--如果不是 會員 評論的名稱就是他的IP地址
PLEmail varchar(50),--郵箱地址
PLtime datetime,--評論的時間
PLMessage text,--評論商品的內容

) 希望你能從中 有點啟發 學習愉快!!

㈩ 急求一個用jsp做的購物網站,可以連接到資料庫,實現注冊,購物車等功能

登錄注冊:
<%@ page language="java" import="java.util.*" pageEncoding="GB2312"%>

<html>
<body>
<%
request.setCharacterEncoding("GB2312");
String username=request.getParameter("username");
String password=request.getParameter("password");
String sql="select * from user where username=? and password=?";
pstm=conn.prepareStatement(sql);
pstm.setString(1,username);
pstm.setString(2,password);
rs=pstm.executeQuery();
if(rs.next())
{
session.setAttribute("id",rs.getInt("userid"));
int id=rs.getInt("userid");
session.setAttribute("username",rs.getString("username"));
session.setAttribute("realname",rs.getString("realname"));
session.setAttribute("address",rs.getString("address"));
session.setAttribute("phone",rs.getString("phone"));
}
Integer userid=(Integer)session.getAttribute("id");
// System.out.println(userid);
if(userid==null)
{
%>
<table border=1>
<form action="" method="post">
<tr><td>用戶名:</td><td><input type="text" name="username"></td></tr>
<tr><td>密 碼:</td><td><input type="password" name="password"></td></tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="登錄" name="submit">
<a href="front/addUser.jsp">注冊</a></td>
</tr>
</form>
</table>
<% }
else
{%>
<table border=1>
<tr><td><%= session.getAttribute("username")%>歡迎光顧我的書店</td></tr>
<tr><td><a href="front/updateUser.jsp?userid=<%=userid %>">修改個人信息</a></td></tr>
<tr><td><a href="front/SelectShoppingCart.jsp">查看購物車</a></td></tr>
<tr><td><a href="front/exit.jsp">退出</a></td></tr>
</table>
<%}
%>
</body>
</html>

購物車部分代碼:
<%@ page language="java" import="java.util.*,com.javabean.*" pageEncoding="GB2312"%>

<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body><center>
<a href="front/index.jsp"><img src="images/logo.gif" alt="" title="" border="0" /></a>
<%@ include file="menu.jsp"%>
<%@ include file="/DB.jsp" %>

<%@ include file="leftmenu.jsp"%> <table>
<tr>
<td colspan="8" id=s align="center"><h1>您的購物車</h1></td><br>
</tr>
<tr>
<td align="center">id</td><td align="center">名稱</td><td align="center">作者</td>
<td align="center">出版社</td><td align="center">單價</td><td align="center">數量</td>
<td align="center">總價</td><td align="center">操作</td>
</tr>
<%
int totalNum=0;
double totalMoney=0.0;

ArrayList <ShoppingCartObject> cart=(ArrayList)session.getAttribute("shoppingcart");
Iterator it =null;
if(cart!=null && cart.size()>0){
it=cart.iterator();
while(it.hasNext()){
ShoppingCartObject sco=(ShoppingCartObject)it.next();
totalNum=totalNum+sco.getBooknum();
totalMoney=totalMoney+sco.getSubmoney();
%>

<tr>
<td align="center"><%=sco.getId() %></td>
<td align="center"><%=sco.getName() %></td>
<td align="center"><%=sco.getAuthor()%></td>
<td align="center"><%=sco.getPublisher() %></td>
<td align="center"><%=sco.getUnitprice() %></td>
<td align="center"><%=sco.getBooknum() %></td>
<td align="center">¥<%=sco.getSubmoney() %>元</td>
<td align="center"><a href="front/DelFromShoppingCart.jsp?id=<%=sco.getId()%>">刪除</a>
<a href="front/bookdetail.jsp?id=<%=sco.getId()%>">詳細信息</a></td>
</tr>
<%
}
}
else{ %>
<tr><td colspan="8" align="right">您一共買了<%= totalNum%>本書 總價為¥<%=totalMoney %>元</td></tr>
<tr><td colspan="8" align="center">您的購物車為空</td></tr><%} %>
<tr><td colspan="1" align="center"><a href="front/ClearShoppingCart.jsp">清空購物車</a></td>
<td colspan="4" align="center"><a href="front/allbook.jsp">繼續購物</a></td>
<td colspan="3" align="center"><a href="front/makeorder.jsp">前往結賬</a></td>
</tr>
</table>
</body>
</html>
</body>
</html>