人事工资管理系统
人事工资管理系统mysql数据库版本源码:
超级管理员表创建语句如下:
create table t_admin( id int primary key auto_increment comment '主键', username varchar(100) comment '超级管理员账号', password varchar(100) comment '超级管理员密码' ) comment '超级管理员'; insert into t_admin(username,password) values('admin','123456');
订单详情表创建语句如下:
create table t_orderlist( id int primary key auto_increment comment '主键', v1 varchar(100) comment '姓名', v2 varchar(100) comment '宿舍', v3 int comment '电费' ) comment '订单详情';
电子简历表创建语句如下:
create table t_dzjl( id int primary key auto_increment comment '主键', v4 varchar(100) comment '状态', customerId int comment '缴费用户', insertDate datetime comment '缴费时间' ) comment '电子简历';
消息表创建语句如下:
create table t_xiaoxi( id int primary key auto_increment comment '主键', productId int comment '产品', num int comment '数量', customerId int comment '', wdxxId int comment '评论信息' ) comment '消息';
分类表创建语句如下:
create table t_types( id int primary key auto_increment comment '主键', customerId int comment '评论人' ) comment '分类';
评论表创建语句如下:
create table t_pinglun( id int primary key auto_increment comment '主键', content varchar(100) comment '评论内容', insertDate datetime comment '评论日期', zpId int comment '招聘', customerId int comment '用户' ) comment '评论';
库存表创建语句如下:
create table t_kc( id int primary key auto_increment comment '主键', status varchar(100) comment '', customerId int comment '用户', title varchar(100) comment '标题' ) comment '库存';
电费表创建语句如下:
create table t_df( id int primary key auto_increment comment '主键', content varchar(100) comment '内容', insertDate datetime comment '日期', customerId int comment '用户', orderId int comment '订单', productId int comment '菜品', productId int comment '产品' ) comment '电费';
购物车表创建语句如下:
create table t_shopcar( id int primary key auto_increment comment '主键', kcNum int comment '库存数量', insertDate datetime comment '日期', typesName varchar(100) comment '分类' ) comment '购物车';
人事工资管理系统oracle数据库版本源码:
超级管理员表创建语句如下:
create table t_admin( id integer, username varchar(100), password varchar(100) ); insert into t_admin(id,username,password) values(1,'admin','123456'); --超级管理员字段加注释 comment on column t_admin.id is '主键'; comment on column t_admin.username is '超级管理员账号'; comment on column t_admin.password is '超级管理员密码'; --超级管理员表加注释 comment on table t_admin is '超级管理员';
订单详情表创建语句如下:
create table t_orderlist( id integer, v1 varchar(100), v2 varchar(100), v3 int ); --订单详情字段加注释 comment on column t_orderlist.id is '主键'; comment on column t_orderlist.v1 is '姓名'; comment on column t_orderlist.v2 is '宿舍'; comment on column t_orderlist.v3 is '电费'; --订单详情表加注释 comment on table t_orderlist is '订单详情';
电子简历表创建语句如下:
create table t_dzjl( id integer, v4 varchar(100), customerId int, insertDate datetime ); --电子简历字段加注释 comment on column t_dzjl.id is '主键'; comment on column t_dzjl.v4 is '状态'; comment on column t_dzjl.customerId is '缴费用户'; comment on column t_dzjl.insertDate is '缴费时间'; --电子简历表加注释 comment on table t_dzjl is '电子简历';
消息表创建语句如下:
create table t_xiaoxi( id integer, productId int, num int, customerId int, wdxxId int ); --消息字段加注释 comment on column t_xiaoxi.id is '主键'; comment on column t_xiaoxi.productId is '产品'; comment on column t_xiaoxi.num is '数量'; comment on column t_xiaoxi.customerId is ''; comment on column t_xiaoxi.wdxxId is '评论信息'; --消息表加注释 comment on table t_xiaoxi is '消息';
分类表创建语句如下:
create table t_types( id integer, customerId int ); --分类字段加注释 comment on column t_types.id is '主键'; comment on column t_types.customerId is '评论人'; --分类表加注释 comment on table t_types is '分类';
评论表创建语句如下:
create table t_pinglun( id integer, content varchar(100), insertDate datetime, zpId int, customerId int ); --评论字段加注释 comment on column t_pinglun.id is '主键'; comment on column t_pinglun.content is '评论内容'; comment on column t_pinglun.insertDate is '评论日期'; comment on column t_pinglun.zpId is '招聘'; comment on column t_pinglun.customerId is '用户'; --评论表加注释 comment on table t_pinglun is '评论';
库存表创建语句如下:
create table t_kc( id integer, status varchar(100), customerId int, title varchar(100) ); --库存字段加注释 comment on column t_kc.id is '主键'; comment on column t_kc.status is ''; comment on column t_kc.customerId is '用户'; comment on column t_kc.title is '标题'; --库存表加注释 comment on table t_kc is '库存';
电费表创建语句如下:
create table t_df( id integer, content varchar(100), insertDate datetime, customerId int, orderId int, productId int, productId int ); --电费字段加注释 comment on column t_df.id is '主键'; comment on column t_df.content is '内容'; comment on column t_df.insertDate is '日期'; comment on column t_df.customerId is '用户'; comment on column t_df.orderId is '订单'; comment on column t_df.productId is '菜品'; comment on column t_df.productId is '产品'; --电费表加注释 comment on table t_df is '电费';
购物车表创建语句如下:
create table t_shopcar( id integer, kcNum int, insertDate datetime, typesName varchar(100) ); --购物车字段加注释 comment on column t_shopcar.id is '主键'; comment on column t_shopcar.kcNum is '库存数量'; comment on column t_shopcar.insertDate is '日期'; comment on column t_shopcar.typesName is '分类'; --购物车表加注释 comment on table t_shopcar is '购物车';
oracle特有,对应序列如下:
create sequence s_t_orderlist; create sequence s_t_dzjl; create sequence s_t_xiaoxi; create sequence s_t_types; create sequence s_t_pinglun; create sequence s_t_kc; create sequence s_t_df; create sequence s_t_shopcar;
人事工资管理系统sqlserver数据库版本源码:
超级管理员表创建语句如下:
--超级管理员 create table t_admin( id int identity(1,1) primary key not null,--主键 username varchar(100),--超级管理员账号 password varchar(100)--超级管理员密码 ); insert into t_admin(username,password) values('admin','123456');
订单详情表创建语句如下:
--订单详情表注释 create table t_orderlist( id int identity(1,1) primary key not null,--主键 v1 varchar(100),--姓名 v2 varchar(100),--宿舍 v3 int--电费 );
电子简历表创建语句如下:
--电子简历表注释 create table t_dzjl( id int identity(1,1) primary key not null,--主键 v4 varchar(100),--状态 customerId int,--缴费用户 insertDate datetime--缴费时间 );
消息表创建语句如下:
--消息表注释 create table t_xiaoxi( id int identity(1,1) primary key not null,--主键 productId int,--产品 num int,--数量 customerId int,-- wdxxId int--评论信息 );
分类表创建语句如下:
--分类表注释 create table t_types( id int identity(1,1) primary key not null,--主键 customerId int--评论人 );
评论表创建语句如下:
--评论表注释 create table t_pinglun( id int identity(1,1) primary key not null,--主键 content varchar(100),--评论内容 insertDate datetime,--评论日期 zpId int,--招聘 customerId int--用户 );
库存表创建语句如下:
--库存表注释 create table t_kc( id int identity(1,1) primary key not null,--主键 status varchar(100),-- customerId int,--用户 title varchar(100)--标题 );
电费表创建语句如下:
--电费表注释 create table t_df( id int identity(1,1) primary key not null,--主键 content varchar(100),--内容 insertDate datetime,--日期 customerId int,--用户 orderId int,--订单 productId int,--菜品 productId int--产品 );
购物车表创建语句如下:
--购物车表注释 create table t_shopcar( id int identity(1,1) primary key not null,--主键 kcNum int,--库存数量 insertDate datetime,--日期 typesName varchar(100)--分类 );
来源:https://blog.csdn.net/javabysj1/article/details/98881588