MySQL Create Table SQL
Table Structure: okayapi_vhr_employeeremove:/tablelist/okayapi_vhr_employeeremove.html
-- MySQL Table okayapi_vhr_employeeremove
-- From: OkayAPI.com
CREATE TABLE `okayapi_vhr_employeeremove` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`eid` int(11) NULL COMMENT '',
`afterDepId` int(11) NULL COMMENT '调动后部门',
`afterJobId` int(11) NULL COMMENT '调动后职位',
`removeDate` date NULL COMMENT '调动日期',
`reason` varchar(255) NULL COMMENT '调动原因',
`remark` varchar(255) NULL COMMENT '',
KEY `eid` (`eid`),
KEY `afterDepId` (`afterDepId`),
KEY `afterJobId` (`afterJobId`),
KEY `removeDate` (`removeDate`),
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 Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
eid | int(11) | 是 | Normal Index | |||
afterDepId | int(11) | 是 | 调动后部门 | |||
afterJobId | int(11) | 是 | 调动后职位 | |||
removeDate | date | 是 | 调动日期 | |||
reason | varchar(255) | 是 | 调动原因 | |||
remark | varchar(255) | 是 |