3.创建“月工资统计表”
CREATE TABLE [dbo].[月工资统计表] (
[日期] [int] NULL ,
[职员编号] [varchar] (30) Not NULL PRIMARY KEY,
[基本工资] [float] NULL DEFAULT (0) ,
[浮动工资] [decimal](26, 2) NULL DEFAULT (0) ,
[合同补] [decimal](26, 2) NULL DEFAULT (0) ,
[粮副补] [decimal](26, 2) NULL DEFAULT (0) ,
[房补] [decimal](26, 2) NULL DEFAULT (0) ,
[临时补] [decimal](26, 2) NULL DEFAULT (0) ,
[职务工资] [decimal](26, 2) NULL DEFAULT (0) ,
[工龄工资] [decimal](26, 2) NULL DEFAULT (0) ,
[考核工资] [decimal](26, 2) NULL DEFAULT (0) ,
[奖金] [decimal](26, 2) NULL DEFAULT (0) ,
[应发金额合计] [decimal](26, 2) NULL DEFAULT (0) ,
[房租] [decimal](26, 2) NULL DEFAULT (0) ,
[水电费] [decimal](26, 2) NULL DEFAULT (0) ,
[请假扣除] [decimal](26, 2) NULL DEFAULT (0) ,
[考勤扣除] [decimal](26, 2) NULL DEFAULT (0) ,
[罚款] [decimal](26, 2) NULL DEFAULT (0) ,
[住房公积金] [decimal](26, 2) NULL DEFAULT (0) ,
[医疗保险] [decimal](26, 2) NULL DEFAULT (0) ,
[养老保险] [decimal](26, 2) NULL DEFAULT (0) ,
[失业保险] [decimal](26, 2) NULL DEFAULT (0) ,
[生育保险] [decimal](26, 2) NULL DEFAULT (0) ,
[工伤保险] [decimal](26, 2) NULL DEFAULT (0) ,
[应扣金额合计] [decimal](26, 2) NULL DEFAULT (0) ,
[工资合计] [decimal](26, 2) NULL DEFAULT (0) ,
[个人所得税] [decimal](26, 2) NULL DEFAULT (0) ,
[实发金额] [decimal](26, 2) NULL DEFAULT (0) ,
[发放否] [char] (10) NULL ,
[月份] [int] NULL
) ON [PRIMARY]
GO
4.创建“个人所得税表”
CREATE TABLE [dbo].[个人所得税表] (
[编号] [int] NOT NULL PRIMARY KEY,
[级数] [char] (2) NOT NULL ,
[不计税工资] [decimal](26, 2) NOT NULL DEFAULT (800),
[工资下限] [decimal](26, 2) NOT NULL DEFAULT (0),
[工资上限] [decimal](26, 2) NOT NULL DEFAULT (0),
[个人所得税率] [decimal](26, 2) NOT NULL DEFAULT (0),
[速算扣除数] [decimal](26, 2) NOT NULL DEFAULT (0),
[备注] [varchar] (50) NULL
) ON [PRIMARY]
GO
评论0