Home > Database > Mysql Tutorial > web-伊莱博-票据管理(ver-1.0)-数据库设计

web-伊莱博-票据管理(ver-1.0)-数据库设计

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 17:43:36
Original
1178 people have browsed it

View Code use master -- DatabaseName:票据管理系统 -- pubdate:14:44 2012-12-3 -- author:YuanBo -- ( master..sysdatabases ) DROP DATABASE Bill Bill GO use Bill -- Table:1,票据种类表 -- BillType(billTypeId ( 1 , 1 ), -- 编号【PK】 billTypeNam

View Code

use master -- DatabaseName:票据管理系统 -- pubdate:14:44 2012-12-3 -- author:YuanBo --( master..sysdatabases ) DROP DATABASE Bill Bill GO use Bill -- Table:1,票据种类表 -- BillType ( billTypeId (1,1), --编号【PK】 billTypeName pageSum int, --每本页数 billLength ) -- Table:2,票据表 -- Bill ( billId (1,1), --编号【PK】 startNumbers int, --起始编号 endNumbers int, --结束编号 pubdate versionNumbers int, --版本编号 quantity int, --数目【本】 billTypeId ) -- Table:1,用户权限分类 -- UserClassification ( userClassificationId (1,1), --编号【PK】 userClassificationName ) -- Table:2,用户权限分类 -- DescriptionTable ( descriptionTableId (1,1), --编号【PK】 descriptionTableName userClassificationId ) -- Table:3,用户表 -- Users ( userId (1,1), --编号【PK】 username varchar(100) unique, --用户名【U】 pwd varchar(100), --密码 role varchar(100), --角色,【票据主管,服务器空间,香港虚拟主机,普通用户】 ) -- Table:4,“用户权限分类”与“用户权限分类”【第三方关系表】 -- RoleList ( userClassificationId int, --【UserClassification】编号【FK】 descriptionTableId int, --【DescriptionTable】编号【FK】 userId ) sysobjects

,服务器空间
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template