+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_xbinstore_tb_category:/tablelist/okayapi_xbinstore_tb_category.html


-- MySQL Table okayapi_xbinstore_tb_category
-- From: OkayAPI.com
CREATE TABLE `okayapi_xbinstore_tb_category` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `okayapi_xbinstore_tb_category_name` varchar(200) NULL COMMENT '名字',
    `sort_order` int(4) NULL DEFAULT '1' COMMENT '排列序号,表示同级类目的展现次序,如数值相等则按名称次序排列。取值范围:大于零的整数',
    `created` datetime NULL COMMENT '',
    `updated` datetime NULL COMMENT '',
    KEY `okayapi_xbinstore_tb_category_name` (`okayapi_xbinstore_tb_category_name`),
    KEY `sort_order` (`sort_order`),
    KEY `created` (`created`),
    KEY `updated` (`updated`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'B2C商城-分类';

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
okayapi_xbinstore_tb_category_namevarchar(200)名字
sort_orderint(4)1排列序号,表示同级类目的展现次序,如数值相等则按名称次序排列。取值范围:大于零的整数1
createddatetime
updateddatetimeNormal Index

Guess You Like

MySQL Table Design okayapi_xbinstore_tb_category_image

MySQL Table Design okayapi_xbinstore_tb_category_secondary

MySQL Table Design okayapi_xbinstore_tb_hot_words

MySQL Table Design okayapi_xbinstore_tb_index_slide_ad

MySQL Table Design okayapi_xbinstore_tb_item

MySQL Table Design okayapi_xbinstore_tb_item_desc

MySQL Table Design okayapi_xbinstore_tb_item_param

MySQL Table Design okayapi_xbinstore_tb_item_param_item

MySQL Table Design okayapi_xbinstore_tb_manage_user

MySQL Table Design okayapi_xbinstore_tb_order

MySQL Table Design okayapi_xbinstore_tb_order_item

MySQL Table Design okayapi_xbinstore_tb_transaction_message

MySQL Table Design okayapi_xbinstore_tb_user

MySQL Table Design okayapi_xbinstore_tb_user_addr

TOP ↑