+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_xbinstore_tb_item_desc:/tablelist/okayapi_xbinstore_tb_item_desc.html


-- MySQL Table okayapi_xbinstore_tb_item_desc
-- From: OkayAPI.com
CREATE TABLE `okayapi_xbinstore_tb_item_desc` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `item_id` bigint(20) NULL COMMENT '商品ID',
    `item_desc` text NULL COMMENT '商品描述',
    `created` datetime NULL COMMENT '创建时间',
    `updated` datetime NULL COMMENT '更新时间',
    KEY `item_id` (`item_id`),
    KEY `item_desc` (`item_desc`),
    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
item_idbigint(20)商品ID
item_desctext商品描述
createddatetime创建时间
updateddatetime更新时间

Guess You Like

MySQL Table Design okayapi_xbinstore_tb_category

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