MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
category_id | bigint(20) | 是 | 无索引 | |||
yesapi_mall_cms_topic_name | varchar(255) | 是 | 无索引 | |||
create_time | datetime | 是 | 无索引 | |||
start_time | datetime | 是 | 无索引 | |||
end_time | datetime | 是 | 无索引 | |||
attend_count | int(11) | 是 | 参与人数 | 无索引 | ||
attention_count | int(11) | 是 | 关注人数 | 无索引 | ||
read_count | int(11) | 是 | 无索引 | |||
award_name | varchar(100) | 是 | 奖品名称 | 无索引 | ||
attend_type | varchar(100) | 是 | 参与方式 | 无索引 | ||
content | text | 是 | 话题内容 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-话题表:https://open.yesapi.cn/tablelist/yesapi_mall_cms_topic.html
-- 数据库大全:电商-话题表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_cms_topic` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`category_id` bigint(20) NULL COMMENT '',
`yesapi_mall_cms_topic_name` varchar(255) NULL COMMENT '',
`create_time` datetime NULL COMMENT '',
`start_time` datetime NULL COMMENT '',
`end_time` datetime NULL COMMENT '',
`attend_count` int(11) NULL COMMENT '参与人数',
`attention_count` int(11) NULL COMMENT '关注人数',
`read_count` int(11) NULL COMMENT '',
`award_name` varchar(100) NULL COMMENT '奖品名称',
`attend_type` varchar(100) NULL COMMENT '参与方式',
`content` text NULL COMMENT '话题内容',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-话题表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航