+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_dberp_sales_send_order:/tablelist/okayapi_dberp_sales_send_order.html


-- MySQL Table okayapi_dberp_sales_send_order
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_sales_send_order` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `send_order_sn` varchar(50) NOT NULL COMMENT '',
    `sales_order_id` int(11) NOT NULL COMMENT '',
    `return_state` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
    `admin_id` int(11) NOT NULL COMMENT '',
    KEY `send_order_sn` (`send_order_sn`),
    KEY `sales_order_id` (`sales_order_id`),
    KEY `return_state` (`return_state`),
    KEY `admin_id` (`admin_id`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'DBErp进销存-订单发货表';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-4 of 4 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
send_order_snvarchar(50)
sales_order_idint(11)
return_statetinyint(1)00
admin_idint(11)

Guess You Like

MySQL Table Design okayapi_smpss_admin

MySQL Table Design okayapi_smpss_category

MySQL Table Design okayapi_smpss_goods

MySQL Table Design okayapi_smpss_group

MySQL Table Design okayapi_smpss_log

MySQL Table Design okayapi_smpss_mbgroup

MySQL Table Design okayapi_smpss_member

MySQL Table Design okayapi_smpss_purchase

MySQL Table Design okayapi_smpss_region

MySQL Table Design okayapi_smpss_sales

MySQL Table Design okayapi_smpss_system

MySQL Table Design okayapi_smpss_tempsales

MySQL Table Design okayapi_dberp_accounts_receivable

MySQL Table Design okayapi_dberp_accounts_receivable_log

MySQL Table Design okayapi_dberp_admin

MySQL Table Design okayapi_dberp_admin_group

MySQL Table Design okayapi_dberp_app

MySQL Table Design okayapi_dberp_brand

MySQL Table Design okayapi_dberp_customer

MySQL Table Design okayapi_dberp_customer_category

TOP ↑