MySQL数据库表结构设计
第 1-10 条, 共 10 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
users_id | bigint(20) | 否 | 普通索引 | |||
comment_content | longtext | 否 | 无索引 | |||
comment_time | datetime | 否 | 无索引 | |||
comment_parent | bigint(20) | 0 | 是 | 普通索引 | 0 | |
comment_status | int(11) | 0 | 否 | 无索引 | 0 | |
comment_ip | varbinary(128) | 否 | 无索引 | |||
comment_agent | varchar(200) | 否 | 无索引 | |||
comment_like_count | int(10) | 0 | 否 | 无索引 | 0 | |
comment_top | int(10) | 0 | 否 | 无索引 | 0 | |
comment_parent_top | bigint(11) | 0 | 是 | 普通索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:图片分享-评论:https://open.yesapi.cn/tablelist/yesapi_linger_comments.html
-- 数据库大全:图片分享-评论
-- 来源:YesApi.cn
CREATE TABLE `yesapi_linger_comments` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`users_id` bigint(20) NULL COMMENT '',
`comment_content` longtext NULL COMMENT '',
`comment_time` datetime NULL COMMENT '',
`comment_parent` bigint(20) NULL DEFAULT '0' COMMENT '',
`comment_status` int(11) NULL DEFAULT '0' COMMENT '',
`comment_ip` varbinary(128) NULL COMMENT '',
`comment_agent` varchar(200) NULL COMMENT '',
`comment_like_count` int(10) NULL DEFAULT '0' COMMENT '',
`comment_top` int(10) NULL DEFAULT '0' COMMENT '',
`comment_parent_top` bigint(11) NULL DEFAULT '0' COMMENT '',
KEY `users_id` (`users_id`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_parent_top` (`comment_parent_top`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '图片分享-评论';
复制后,到数据库执行,即可创建此数据库表。