+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_jeewms_jform_employee_other_cost:/tablelist/okayapi_jeewms_jform_employee_other_cost.html


-- MySQL Table okayapi_jeewms_jform_employee_other_cost
-- From: OkayAPI.com
CREATE TABLE `okayapi_jeewms_jform_employee_other_cost` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `fk_id` varchar(36) NULL COMMENT '外键',
    `item` varchar(20) NULL COMMENT '事项',
    `cost` decimal(7,2) NULL COMMENT '费用',
    `begin_time` datetime NULL COMMENT '开始时间',
    `end_time` datetime NULL COMMENT '结束时间',
    `comments` varchar(100) NULL COMMENT '备注',
    KEY `fk_id` (`fk_id`),
    KEY `item` (`item`),
    KEY `cost` (`cost`),
    KEY `begin_time` (`begin_time`),
    KEY `end_time` (`end_time`),
    KEY `comments` (`comments`),
    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
fk_idvarchar(36)外键
itemvarchar(20)事项
costdecimal(7,2)费用
begin_timedatetime开始时间
end_timedatetime结束时间
commentsvarchar(100)备注

Guess You Like

MySQL Table Design okayapi_jeewms_ba_act_type

MySQL Table Design okayapi_jeewms_ba_area

MySQL Table Design okayapi_jeewms_ba_barea

MySQL Table Design okayapi_jeewms_ba_bin_type

MySQL Table Design okayapi_jeewms_ba_buss_type

MySQL Table Design okayapi_jeewms_ba_city

MySQL Table Design okayapi_jeewms_ba_city_type

MySQL Table Design okayapi_jeewms_ba_classfl

MySQL Table Design okayapi_jeewms_ba_com_deg

MySQL Table Design okayapi_jeewms_ba_com_type

MySQL Table Design okayapi_jeewms_ba_comp

MySQL Table Design okayapi_jeewms_ba_cont_spec

MySQL Table Design okayapi_jeewms_ba_cont_type

MySQL Table Design okayapi_jeewms_ba_cost

MySQL Table Design okayapi_jeewms_ba_cost_conf

MySQL Table Design okayapi_jeewms_ba_cost_type

MySQL Table Design okayapi_jeewms_ba_cus_sta

MySQL Table Design okayapi_jeewms_ba_deg_type

MySQL Table Design okayapi_jeewms_ba_del_mode

MySQL Table Design okayapi_jeewms_ba_edu_sta

TOP ↑