+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_vhr_adjustsalary:/tablelist/okayapi_vhr_adjustsalary.html


-- MySQL Table okayapi_vhr_adjustsalary
-- From: OkayAPI.com
CREATE TABLE `okayapi_vhr_adjustsalary` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `eid` int(11) NULL COMMENT '',
    `asDate` date NULL COMMENT '调薪日期',
    `beforeSalary` int(11) NULL COMMENT '调前薪资',
    `afterSalary` int(11) NULL COMMENT '调后薪资',
    `reason` varchar(255) NULL COMMENT '调薪原因',
    `remark` varchar(255) NULL COMMENT '备注',
    KEY `eid` (`eid`),
    KEY `asDate` (`asDate`),
    KEY `beforeSalary` (`beforeSalary`),
    KEY `afterSalary` (`afterSalary`),
    KEY `reason` (`reason`),
    KEY `remark` (`remark`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '人力资源-调薪纪录';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
eidint(11)Normal Index
asDatedate调薪日期
beforeSalaryint(11)调前薪资
afterSalaryint(11)调后薪资
reasonvarchar(255)调薪原因
remarkvarchar(255)备注

Guess You Like

MySQL Table Design okayapi_vhr_appraise

MySQL Table Design okayapi_vhr_department

MySQL Table Design okayapi_vhr_employee

MySQL Table Design okayapi_vhr_employeeec

MySQL Table Design okayapi_vhr_employeeremove

MySQL Table Design okayapi_vhr_employeetrain

MySQL Table Design okayapi_vhr_empsalary

MySQL Table Design okayapi_vhr_hr

MySQL Table Design okayapi_vhr_hr_role

MySQL Table Design okayapi_vhr_joblevel

MySQL Table Design okayapi_vhr_menu

MySQL Table Design okayapi_vhr_menu_role

MySQL Table Design okayapi_vhr_msgcontent

MySQL Table Design okayapi_vhr_nation

MySQL Table Design okayapi_vhr_oplog

MySQL Table Design okayapi_vhr_politicsstatus

MySQL Table Design okayapi_vhr_position

MySQL Table Design okayapi_vhr_role

MySQL Table Design okayapi_vhr_salary

MySQL Table Design okayapi_vhr_sysmsg

TOP ↑