+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_xbinstore_tb_item_param_item:/tablelist/okayapi_xbinstore_tb_item_param_item.html


-- MySQL Table okayapi_xbinstore_tb_item_param_item
-- From: OkayAPI.com
CREATE TABLE `okayapi_xbinstore_tb_item_param_item` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `item_id` bigint(20) NULL COMMENT '商品ID',
    `param_data` text NULL COMMENT '参数数据,格式为json格式',
    `created` datetime NULL COMMENT '',
    `updated` datetime NULL COMMENT '',
    KEY `item_id` (`item_id`),
    KEY `param_data` (`param_data`),
    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)商品IDNormal Index
param_datatext参数数据,格式为json格式
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_desc

MySQL Table Design okayapi_xbinstore_tb_item_param

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 ↑