+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_smpss_system:/tablelist/okayapi_smpss_system.html


-- MySQL Table okayapi_smpss_system
-- From: OkayAPI.com
CREATE TABLE `okayapi_smpss_system` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `sysname` varchar(100) NOT NULL COMMENT '',
    `options` text NOT NULL COMMENT '',
    KEY `sysname` (`sysname`),
    KEY `options` (`options`),
    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-2 of 2 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
sysnamevarchar(100)
optionstext

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_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

MySQL Table Design okayapi_dberp_finance_payable

TOP ↑