MySQL Create Table SQL
Table Structure: okayapi_vhr_appraise:/tablelist/okayapi_vhr_appraise.html
-- MySQL Table okayapi_vhr_appraise
-- From: OkayAPI.com
CREATE TABLE `okayapi_vhr_appraise` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`eid` int(11) NULL COMMENT '',
`appDate` date NULL COMMENT '考评日期',
`appResult` varchar(32) NULL COMMENT '考评结果',
`appContent` varchar(255) NULL COMMENT '考评内容',
`remark` varchar(255) NULL COMMENT '备注',
KEY `eid` (`eid`),
KEY `appDate` (`appDate`),
KEY `appResult` (`appResult`),
KEY `appContent` (`appContent`),
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-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
eid | int(11) | 是 | Normal Index | |||
appDate | date | 是 | 考评日期 | |||
appResult | varchar(32) | 是 | 考评结果 | |||
appContent | varchar(255) | 是 | 考评内容 | |||
remark | varchar(255) | 是 | 备注 |