MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
userId | int(11) | 否 | 普通索引 | |||
photographerId | int(11) | 否 | 普通索引 | |||
yesapi_photo_t_comment_comment | text | 是 | 无索引 | |||
createTime | date | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:婚纱摄影-评论:https://open.yesapi.cn/tablelist/yesapi_photo_t_comment.html
-- 数据库大全:婚纱摄影-评论
-- 来源:YesApi.cn
CREATE TABLE `yesapi_photo_t_comment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(11) NULL COMMENT '',
`photographerId` int(11) NULL COMMENT '',
`yesapi_photo_t_comment_comment` text NULL COMMENT '',
`createTime` date NULL COMMENT '',
KEY `userId` (`userId`),
KEY `photographerId` (`photographerId`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '婚纱摄影-评论';
复制后,到数据库执行,即可创建此数据库表。