MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_mall_sms_flash_promotion_session_name | varchar(200) | 是 | 场次名称 | 无索引 | ||
start_time | time | 是 | 每日开始时间 | 无索引 | ||
end_time | time | 是 | 每日结束时间 | 无索引 | ||
yesapi_mall_sms_flash_promotion_session_status | int(1) | 是 | 启用状态:0->不启用;1->启用 | 无索引 | ||
create_time | datetime | 是 | 创建时间 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-限时购场次表:https://open.yesapi.cn/tablelist/yesapi_mall_sms_flash_promotion_session.html
-- 数据库大全:电商-限时购场次表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_sms_flash_promotion_session` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_mall_sms_flash_promotion_session_name` varchar(200) NULL COMMENT '场次名称',
`start_time` time NULL COMMENT '每日开始时间',
`end_time` time NULL COMMENT '每日结束时间',
`yesapi_mall_sms_flash_promotion_session_status` int(1) NULL COMMENT '启用状态:0->不启用;1->启用',
`create_time` datetime NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-限时购场次表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航