MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
posting_id | int(11) | 否 | 无索引 | |||
plate_id | int(11) | 否 | 无索引 | |||
user_id | int(11) | 否 | 无索引 | |||
ip | varchar(128) | 否 | 无索引 | |||
agent | varchar(255) | 否 | 无索引 | |||
is_top | tinyint(1) | 0 | 否 | 无索引 | 0 | |
is_view | tinyint(1) | 否 | 无索引 | |||
very_good | tinyint(1) | 0 | 否 | 无索引 | 0 | |
date_added | datetime | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-论坛帖子:https://open.yesapi.cn/tablelist/yesapi_openant_bbs_posting.html
-- 数据库大全:openant电商-论坛帖子
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_bbs_posting` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`posting_id` int(11) NOT NULL COMMENT '',
`plate_id` int(11) NOT NULL COMMENT '',
`user_id` int(11) NOT NULL COMMENT '',
`ip` varchar(128) NOT NULL COMMENT '',
`agent` varchar(255) NOT NULL COMMENT '',
`is_top` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`is_view` tinyint(1) NOT NULL COMMENT '',
`very_good` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`date_added` datetime NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-论坛帖子';
复制后,到数据库执行,即可创建此数据库表。