MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
post_id | int(10) | 否 | 普通索引 | |||
user_id | int(10) | 否 | 普通索引 | |||
created_at | timestamp | 是 | 无索引 | |||
updated_at | timestamp | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:大学生心理健康-发布用户:https://open.yesapi.cn/tablelist/yesapi_psy_posts_users.html
-- 数据库大全:大学生心理健康-发布用户
-- 来源:YesApi.cn
CREATE TABLE `yesapi_psy_posts_users` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` int(10) NULL COMMENT '',
`user_id` int(10) NULL COMMENT '',
`created_at` timestamp NULL COMMENT '',
`updated_at` timestamp NULL COMMENT '',
KEY `post_id` (`post_id`),
KEY `user_id` (`user_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '大学生心理健康-发布用户';
复制后,到数据库执行,即可创建此数据库表。