+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_xbinstore_tb_category_image:/tablelist/okayapi_xbinstore_tb_category_image.html


-- MySQL Table okayapi_xbinstore_tb_category_image
-- From: OkayAPI.com
CREATE TABLE `okayapi_xbinstore_tb_category_image` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `cid` varchar(5) NULL COMMENT '分类id',
    `okayapi_xbinstore_tb_category_image_name` varchar(200) NULL COMMENT '名字',
    `url` varchar(200) NULL COMMENT '网址或网页id',
    `little_or_big` int(1) NULL DEFAULT '1' COMMENT '状态。可选值:1(little),2(big)',
    `okayapi_xbinstore_tb_category_image_status` int(1) NULL DEFAULT '1' COMMENT '状态。可选值:1(正常),2(删除)',
    `image_url` varchar(200) NULL COMMENT '图片路径',
    `sort_order` int(4) NULL DEFAULT '1' COMMENT '排列序号,表示同级类目的展现次序,如数值相等则按名称次序排列。取值范围:大于零的整数',
    `created` datetime NULL COMMENT '',
    `updated` datetime NULL COMMENT '',
    KEY `cid` (`cid`),
    KEY `okayapi_xbinstore_tb_category_image_name` (`okayapi_xbinstore_tb_category_image_name`),
    KEY `url` (`url`),
    KEY `little_or_big` (`little_or_big`),
    KEY `okayapi_xbinstore_tb_category_image_status` (`okayapi_xbinstore_tb_category_image_status`),
    KEY `image_url` (`image_url`),
    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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
cidvarchar(5)分类id
okayapi_xbinstore_tb_category_image_namevarchar(200)名字
urlvarchar(200)网址或网页id
little_or_bigint(1)1状态。可选值:1(little),2(big)1
okayapi_xbinstore_tb_category_image_statusint(1)1状态。可选值:1(正常),2(删除)1
image_urlvarchar(200)图片路径
sort_orderint(4)1排列序号,表示同级类目的展现次序,如数值相等则按名称次序排列。取值范围:大于零的整数1
createddatetime
updateddatetime

Guess You Like

MySQL Table Design okayapi_xbinstore_tb_category

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 ↑