+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_dberp_purchase_oper_log:/tablelist/okayapi_dberp_purchase_oper_log.html


-- MySQL Table okayapi_dberp_purchase_oper_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_purchase_oper_log` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `p_order_id` int(11) NOT NULL COMMENT '',
    `order_state` tinyint(2) NOT NULL COMMENT '',
    `oper_user_id` int(11) NOT NULL COMMENT '',
    `oper_user` varchar(100) NOT NULL COMMENT '',
    `oper_time` int(10) NOT NULL COMMENT '',
    KEY `p_order_id` (`p_order_id`),
    KEY `order_state` (`order_state`),
    KEY `oper_user_id` (`oper_user_id`),
    KEY `oper_user` (`oper_user`),
    KEY `oper_time` (`oper_time`),
    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-5 of 5 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
p_order_idint(11)
order_statetinyint(2)
oper_user_idint(11)
oper_uservarchar(100)
oper_timeint(10)

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 ↑