+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_jeewms_jform_employee_meals_cost:/tablelist/okayapi_jeewms_jform_employee_meals_cost.html


-- MySQL Table okayapi_jeewms_jform_employee_meals_cost
-- From: OkayAPI.com
CREATE TABLE `okayapi_jeewms_jform_employee_meals_cost` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `fk_id` varchar(36) NULL COMMENT '外键',
    `meals_date` date NULL COMMENT '',
    `meals_cost` decimal(7,2) NULL COMMENT '餐费',
    `meals_addr` varchar(100) NULL COMMENT '吃饭地点',
    `meals_number` int(2) NULL COMMENT '同行人数',
    `comments` varchar(100) NULL COMMENT '备注',
    KEY `fk_id` (`fk_id`),
    KEY `meals_date` (`meals_date`),
    KEY `meals_cost` (`meals_cost`),
    KEY `meals_addr` (`meals_addr`),
    KEY `meals_number` (`meals_number`),
    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)外键
meals_datedate
meals_costdecimal(7,2)餐费
meals_addrvarchar(100)吃饭地点
meals_numberint(2)同行人数
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 ↑