MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
head | varchar(255) | 是 | 无索引 | |||
yesapi_photo_t_photographer_name | varchar(255) | 是 | 无索引 | |||
summary | text | 是 | 无索引 | |||
createTime | date | 是 | 无索引 | |||
yesapi_photo_t_photographer_status | tinyint(4) | 0 | 是 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:婚纱摄影-摄影师:https://open.yesapi.cn/tablelist/yesapi_photo_t_photographer.html
-- 数据库大全:婚纱摄影-摄影师
-- 来源:YesApi.cn
CREATE TABLE `yesapi_photo_t_photographer` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`head` varchar(255) NULL COMMENT '',
`yesapi_photo_t_photographer_name` varchar(255) NULL COMMENT '',
`summary` text NULL COMMENT '',
`createTime` date NULL COMMENT '',
`yesapi_photo_t_photographer_status` tinyint(4) NULL DEFAULT '0' COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '婚纱摄影-摄影师';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢

