MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
item_id | bigint(20) | 否 | 商品ID | 无索引 | ||
item_desc | text | 是 | 商品描述 | 无索引 | ||
created | datetime | 是 | 创建时间 | 无索引 | ||
updated | datetime | 是 | 更新时间 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:B2C商城-商品描述表:https://open.yesapi.cn/tablelist/yesapi_xbinstore_tb_item_desc.html
-- 数据库大全:B2C商城-商品描述表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_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 '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'B2C商城-商品描述表';
复制后,到数据库执行,即可创建此数据库表。