网上商城项目数据库表.doc
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 网上商城 项目 数据库
- 资源描述:
-
网上商城项目数据库表 注册用户表 字段名 数据类型 是否为空 默认值 说明 UserID (主键) integer identity 注册用户ID UserName nvarchar(50) null 注册用户用户名 UserPwd nvarchar(50) null 注册用户密码 PwdQuestion nvarchar(100) null 注册用户密码提问 PwdAnswer nvarchar(100) null 注册用户密码回答 UserRealName nvarchar(50) null 注册用户真实姓名 UserSex nvarchar(5) null 注册用户性别 UserAge nvarchar(5) null 注册用户年龄 UserOccupation nvarchar(20) null 注册用户工作职业 UserIncome nvarchar(20) null 注册用户个人收入 UserEducation nvarchar(20) null 注册用户最高学历 UserEmail nvarchar(100) null 注册用户电子邮件 UserTelphone nvarchar(20) null 注册用户固定电话 UserMobile nvarchar(11) null 注册用户移动电话 UserProvince nvarchar(20) null 注册用户所在省份 UserCity nvarchar(50) null 注册用户所在城市 UserAddress nvarchar(100) null 注册用户邮政编码 UserVIP integer null default 0 注册用户是否VIP UserCheck integer null default 1 注册用户是否审核 UserPoint integer null default 100 注册用户商城积分 UserVisitCount integer null default 1 注册用户访问次数 UserLastVisitTime datetime null default getdate() 注册用户最后访问时间 UserLastVisitIP nvarchar(20) null 注册用户最后访问IP UserCreateTime datetime null default getdate() 注册用户注册时间 用户访问日志表 字段名 数据类型 是否为空 默认值 说明 LogID integer identity 日志ID UserName nvarchar(50) null 访问用户名 VisitIP nvarchar(20) null 访问IP VisitTime datetime null default getdate() 访问时间 管理员表 字段名 数据类型 是否为空 默认值 说明 ManagerID integer identity 管理员ID ManagerName nvarchar(50) null 管理员用户名 ManagerPwd nvarchar(50) null 管理员密码 ManagerType integer null 管理员类型 ManagerText nvarchar(250) null 管理员描述 ManagerCheck integer null default 1 管理员是否审核 ManagerVisitCount integer null default 1 管理员访问次数 ManagerLastVisitTime datetime null default getdate() 管理员最后访问时间 ManagerLastVisitIP nvarchar(20) null 管理员最后访问IP ManagerCreateTime datetime null d efault getdate() 管理员录入时间 商品二级分类表 字段名 数据类型 是否为空 默认值 说明 BorderID integer identity 二级分类ID TypeID integer null 一级分类ID BorderName nvarchar(50) null 二级分类名称 BorderText nvarchar(250) null 二级分类描述 BorderOrder integer null default 0 二级分类显示级别 BorderCheck integer null default 0 二级分类显示校验 BorderTime datetime null default getdate() 二级分类录入时间 商品信息表 字段名 数据类型 是否为空 默认值 说明 GoodsID integer identity 商品ID TypeID integer null 商品一级分类ID BorderID integer null 商品二级分类ID GoodsCode nvarchar(100) null 商品编号 GoodsTypeCode nvarchar(100) null 商品型号 GoodsName nvarchar(100) null 商品名称 GoodsKeys nvarchar(100) null 商品关键字 GoodsText nvarchar(250) null 商品简介 GoodsContent text null 商品描述 GoodsPicSmall nvarchar(150) null 商品小图片 GoodsPicLarge nvarchar(150) null 商品大图片 GoodsPT nvarchar(50) null 商品品牌 GoodsPriceShop money null 商品市场价 GoodsPriceUser money null 商品优惠价 GoodsPriceVIP money null 商品VIP价 GoodsPricePer integer null 商品折扣数 GoodsOnTime datetime null default getdate() 商品上市时间 GoodsIsNew integer null default 1 商品是否新品 GoodsIsVouch integer null default 1 商品是否推荐 GoodsOrder integer null default 0 商品显示级别 GoodsCheck integer null default 0 商品是否审核 GoodsCheckAdmin nvarchar(50) null 商品审核员 GoodsHits integer null default 0 商品点击数 GoodsReviews integer null default 0 商品评论数 GoodsOrderNum integer null default 0 商品下单数 GoodsBuyNum integer null default 0 商品卖出数 GoodsInTime datetime null default getdate() 商品录入时间 商品评论表 字段名 数据类型 是否为空 默认值 说明 ReviewID integer identity 评论ID GoodsID integer null 商品ID UserName nvarchar(50) null 评论用户名 UserIP nvarchar(20) null 评论用户IP ReviewText text null 评论内容 ReviewCheck integer null default 1 评论是否审核 ReviewTime datetime null default getdate() 评论时间 购物车记录表 字段名 数据类型 是否为空 默认值 说明 ShoppingCartID integer identity 购物车ID UserID integer null 注册用户ID UserCookID nvarchar(20) null 购物车临时CookID UserIP nvarchar(20) null 用户IP地址 GoodsID integer null 商品ID GoodsName nvarchar(100) null 商品名称 GoodsPriceShop money null 商品市场价 GoodsPriceUser money null 商品会员价 GoodsNumber integer null default 1 商品购买数量 ShoppingCheck integer null default 0 商品审核 ShoppingTime datetime null default getdate() 购物时间 收藏夹记录表 字段名 数据类型 是否为空 默认值 说明 CollectID integer identity 记录ID UserID integer null 注册用户ID GoodsID integer null 商品ID GoodsName nvarchar(100) null 商品名 GoodsPriceShop money null 商品市场价 GoodsPriceUser money null 商品优惠价 CollectTime datetime null default getdate() 收藏记录时间 购物订单记录表 字段名 数据类型 是否为空 默认值 说明 OrderID integer identity 记录ID UserID integer null 注册用户ID UserCookID nvarchar(20) null 购物车临时CookID OrderUserRealName nvarchar(50) null 收货人姓名 OrderUserSex n varchar(5) null 收货人性别 OrderUserAddress nvarchar(250) null 收货人详细地址 OrderUserPostcode nvarchar(6) null 收货人邮政编码 OrderUserTelphone nvarchar(20) null 收货人联系电话 OrderUserEmail nvarchar(100) null 收货人电子邮件 OrderGoodsSendType nvarchar(50) null 送货方式 OrderMoneyPayType nvarchar(50) null 付款方式 OrderWeight integer null default 1 订单状态 OrderTime datetime null default getdate() 下单时间 商品库存表 字段名 数据类型 是否为空 默认值 说明 GoodsSaveID integer identity 库存ID GoodsID integer null 商品ID GoodsName nvarchar(100) null 商品名称 SaveNum integer null default 0 商品库存数量 SaveAddNum integer null default 0 商品增加数量 SaveTime datetime null default getdate() 商品入库时间 SaveAddTime datetime null default getdate() 商品增加时间 商品库存配置表 字段名 数据类型 是否为空 默认值 说明 GoodsSaveInfoID integer identity 库存配置ID AllNum integer null 商品满库数量 AlertNum integer null 库存预警数量 AddTime datetime null default getdate() 配置创建时间 ***************************************************** ' 添加商品记录同步添加库存记录的触发器 '***************************************************** IF EXISTS (SELECT name FROM sysobjects WHERE name = 'AddGoodsInfo' AND type = 'TR') DROP TRIGGER AddGoodsInfo GO CREATE TRIGGER AddGoodsInfo ON [dbo].[GoodsInfo] FOR INSERT AS INSERT INTO GoodsSave select GoodsID,GoodsName,0,0,getdate(),getdate() from inserted GO '***************************************************** ' 删除商品记录同步删除库存记录的触发器 '***************************************************** IF EXISTS (SELECT name FROM sysobjects WHERE name = 'DelGoodsInfo' AND type = 'TR') DROP TRIGGER DelGoodsInfo GO CREATE TRIGGER DelGoodsInfo ON [dbo].[GoodsInfo] FOR DELETE AS DELETE from GoodsSave where GoodsID = (SELECT GoodsID FROM deleted) GO '***************************************************** ' 重新同步商品在库存表中的对应记录的存储过程 '***************************************************** CREATE PROCEDURE BindGoodsToSave AS IF EXISTS (SELECT name FROM sysobjects WHERE name = 'GoodsSave' AND type = 'U') BEGIN DROP TABLE GoodsSave create table GoodsSave ( GoodsSaveID integer identity, GoodsID integer null, GoodsName nvarchar(100) null, SaveNum integer null default 0, SaveAddNum integer null default 0, SaveTime datetime null default getdate(), SaveAddTime datetime null default getdate(), constraint PK_GOODSSAVE primary key (GoodsSaveID) ) END ELSE BEGIN create table GoodsSave ( GoodsSaveID integer identity, GoodsID integer null, GoodsName nvarchar(100) null, SaveNum integer null default 0, SaveAddNum integer null default 0, SaveTime datetime null default getdate(), SaveAddTime datetime null default getdate(), constraint PK_GOODSSAVE primary key (GoodsSaveID) ) END INSERT INTO GoodsSave(GoodsID,GoodsName) select GoodsID,GoodsName from GoodsInfo order by GoodsID GO '***************************************************** ' 按日期和月份统计注册人数的存储过程 '***************************************************** CREATE procedure GetRegUsers @id int AS declare @table table(ID int IDENTITY(1,1),RegDate nvarchar(10),RegNum int) declare @tempId int --临时表记录ID declare @tempRegDate nvarchar(10) --临时表日期 set nocount on if (@id = 0) begin insert into @table(RegDate) select distinct convert(char(10),UserCreateTime,120) from Users order by convert(char(10),UserCreateTime,120) desc declare _cursor cursor for select Id,RegDate from @table open _cursor fetch next from _cursor into @tempId,@tempRegDate while @@fetch_status = 0 begin update @table set RegNum=(select count(UserID) from Users where convert(char(10),UserCreateTime,120) = @tempRegDate) where ID = @tempId fetch next from _cursor into @tempId,@tempRegDate end close _cursor deallocate _cursor end else begin insert into @table(RegDate) select distinct convert(char(7),UserCreateTime,120) from Users order by convert(char(7),UserCreateTime,120) desc declare _cursor cursor for select Id,RegDate from @table open _cursor fetch next from _cursor into @tempId,@tempRegDate while @@fetch_status = 0 begin update @table set RegNum=(select count(UserID) from Users where convert(char(7),UserCreateTime,120) = @tempRegDate) where ID = @tempId fetch next from _cursor into @tempId,@tempRegDate end close _cursor deallocate _cursor end set nocount off select * from @table where RegDate is not null GO '***************************************************** ' 按日期和月份统计用户订单的存储过程 '***************************************************** CREATE procedure GetUserOrders @id int AS declare @table table(ID int IDENTITY(1,1),RegDate nvarchar(10),RegNum int) declare @tempId int --临时表记录ID declare @tempRegDate nvarchar(10) --临时表日期 set nocount on if (@id = 0) begin insert into @table(RegDate) select distinct convert(char(10),OrderTime,120) from GoodsOrder order by convert(char(10),OrderTime,120) desc declare _cursor cursor for select Id,RegDate from @table open _cursor fetch next from _cursor into @tempId,@tempRegDate while @@fetch_status = 0 begin update @table set RegNum=(select count(UserID) from GoodsOrder where convert(char(10),OrderTime,120) = @tempRegDate) where ID = @tempId fetch next from _cursor into @tempId,@tempRegDate end close _cursor deallocate _cursor end else begin insert into @table(RegDate) select distinct convert(char(7),OrderTime,120) from GoodsOrder order by convert(char(7),OrderTime,120) desc declare _cursor cursor for select Id,RegDate from @table open _cursor fetch next from _cursor into @tempId,@tempRegDate while @@fetch_status = 0 begin update @table set RegNum=(select count(UserID) from GoodsOrder where convert(char(7),OrderTime,120) = @tempRegDate) where ID = @tempId fetch next from _cursor into @tempId,@tempRegDate end close _cursor deallocate _cursor end set nocount off select * from @table where RegDate is not null GO展开阅读全文
咨信网温馨提示:1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前可先查看【教您几个在下载文档中可以更好的避免被坑】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时联系平台进行协调解决,联系【微信客服】、【QQ客服】,若有其他问题请点击或扫码反馈【服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【版权申诉】”,意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:0574-28810668;投诉电话:18658249818。




网上商城项目数据库表.doc



实名认证













自信AI助手
















微信客服
客服QQ
发送邮件
意见反馈



链接地址:https://www.zixin.com.cn/doc/11424028.html