MySQL数据库表结构设计
第 1-23 条, 共 23 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
ID | bigint(20) | 否 | 无索引 | |||
post_author | bigint(20) | 0 | 否 | 普通索引 | 0 | |
post_date | datetime | 0000-00-00 00:00:00 | 否 | 无索引 | 0000-00-00 00:00:00 | |
post_date_gmt | datetime | 0000-00-00 00:00:00 | 否 | 无索引 | 0000-00-00 00:00:00 | |
post_content | longtext | 否 | 无索引 | |||
post_title | text | 否 | 无索引 | |||
post_excerpt | text | 否 | 无索引 | |||
post_status | varchar(20) | publish | 否 | 无索引 | publish | |
comment_status | varchar(20) | open | 否 | 无索引 | open | |
ping_status | varchar(20) | open | 否 | 无索引 | open | |
post_password | varchar(255) | 否 | 无索引 | |||
post_name | varchar(200) | 否 | 普通索引 | |||
to_ping | text | 否 | 无索引 | |||
pinged | text | 否 | 无索引 | |||
post_modified | datetime | 0000-00-00 00:00:00 | 否 | 无索引 | 0000-00-00 00:00:00 | |
post_modified_gmt | datetime | 0000-00-00 00:00:00 | 否 | 无索引 | 0000-00-00 00:00:00 | |
post_content_filtered | longtext | 否 | 无索引 | |||
post_parent | bigint(20) | 0 | 否 | 普通索引 | 0 | |
guid | varchar(255) | 否 | 无索引 | |||
menu_order | int(11) | 0 | 否 | 无索引 | 0 | |
post_type | varchar(20) | post | 否 | 普通索引 | post | |
post_mime_type | varchar(100) | 否 | 无索引 | |||
comment_count | bigint(20) | 0 | 否 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:WordPress-文章:https://open.yesapi.cn/tablelist/yesapi_wp_posts.html
-- 数据库大全:WordPress-文章
-- 来源:YesApi.cn
CREATE TABLE `yesapi_wp_posts` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ID` bigint(20) NOT NULL COMMENT '',
`post_author` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '',
`post_content` longtext NOT NULL COMMENT '',
`post_title` text NOT NULL COMMENT '',
`post_excerpt` text NOT NULL COMMENT '',
`post_status` varchar(20) NOT NULL DEFAULT 'publish' COMMENT '',
`comment_status` varchar(20) NOT NULL DEFAULT 'open' COMMENT '',
`ping_status` varchar(20) NOT NULL DEFAULT 'open' COMMENT '',
`post_password` varchar(255) NOT NULL COMMENT '',
`post_name` varchar(200) NOT NULL COMMENT '',
`to_ping` text NOT NULL COMMENT '',
`pinged` text NOT NULL COMMENT '',
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '',
`post_content_filtered` longtext NOT NULL COMMENT '',
`post_parent` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
`guid` varchar(255) NOT NULL COMMENT '',
`menu_order` int(11) NOT NULL DEFAULT '0' COMMENT '',
`post_type` varchar(20) NOT NULL DEFAULT 'post' COMMENT '',
`post_mime_type` varchar(100) NOT NULL COMMENT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
KEY `post_author` (`post_author`),
KEY `post_name` (`post_name`),
KEY `post_parent` (`post_parent`),
KEY `post_type` (`post_type`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'WordPress-文章';
复制后,到数据库执行,即可创建此数据库表。