+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_jeewms_jform_order_customer:/tablelist/okayapi_jeewms_jform_order_customer.html


-- MySQL Table okayapi_jeewms_jform_order_customer
-- From: OkayAPI.com
CREATE TABLE `okayapi_jeewms_jform_order_customer` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `okayapi_jeewms_jform_order_customer_name` varchar(32) NOT NULL COMMENT '客户名',
    `money` double NOT NULL COMMENT '单价',
    `sex` varchar(4) NOT NULL COMMENT '性别',
    `telphone` varchar(32) NOT NULL COMMENT '电话',
    `fk_id` varchar(36) NOT NULL COMMENT '外键',
    KEY `okayapi_jeewms_jform_order_customer_name` (`okayapi_jeewms_jform_order_customer_name`),
    KEY `money` (`money`),
    KEY `sex` (`sex`),
    KEY `telphone` (`telphone`),
    KEY `fk_id` (`fk_id`),
    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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
okayapi_jeewms_jform_order_customer_namevarchar(32)客户名
moneydouble单价
sexvarchar(4)性别
telphonevarchar(32)电话
fk_idvarchar(36)外键

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 ↑