+ 立即免费创建此表 返回数据库大全

MySQL建表SQL语句

数据库结构:公益商城-广告位表:https://open.yesapi.cn/tablelist/yesapi_morning_os_advert.html


-- 数据库大全:公益商城-广告位表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_morning_os_advert` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `advert_id` bigint(20) NULL COMMENT '广告位ID',
    `yesapi_morning_os_advert_name` varchar(64) NULL COMMENT '名称',
    `width` int(11) NULL COMMENT '宽度',
    `height` int(11) NULL COMMENT '高度',
    `description` varchar(255) NULL COMMENT '描述',
    `yesapi_morning_os_advert_code` varchar(64) NULL COMMENT '代码简称',
    `template` text NULL COMMENT '模版内容',
    `defult_number` int(11) NULL DEFAULT '0' COMMENT '默认显示个数',
    `yesapi_morning_os_advert_number` int(11) NULL DEFAULT '0' COMMENT '广告数量',
    `yesapi_morning_os_advert_status` tinyint(2) NULL DEFAULT '0' COMMENT '状态 1=显示/0=隐藏',
    `yesapi_morning_os_advert_type` tinyint(4) NULL COMMENT '广告位类型 1=图片/0=文本',
    `create_time` datetime NULL COMMENT '创建时间',
    `create_by` varchar(64) NULL COMMENT '创建者',
    `update_by` varchar(64) NULL COMMENT '更新者',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '公益商城-广告位表';

复制后,到数据库执行,即可创建此数据库表。


MySQL数据库表结构设计

第 1-14 条, 共 14 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
advert_idbigint(20)广告位ID无索引
yesapi_morning_os_advert_namevarchar(64)名称无索引
widthint(11)宽度无索引
heightint(11)高度无索引
descriptionvarchar(255)描述无索引
yesapi_morning_os_advert_codevarchar(64)代码简称无索引
templatetext模版内容无索引
defult_numberint(11)0默认显示个数无索引0
yesapi_morning_os_advert_numberint(11)0广告数量无索引0
yesapi_morning_os_advert_statustinyint(2)0状态 1=显示/0=隐藏无索引0
yesapi_morning_os_advert_typetinyint(4)广告位类型 1=图片/0=文本无索引
create_timedatetime创建时间无索引
create_byvarchar(64)创建者无索引
update_byvarchar(64)更新者无索引

猜你喜欢

MySQL数据库设计 公益商城-系统配置表

MySQL数据库设计 公益商城-日志记录表

MySQL数据库设计 公益商城-目录表

MySQL数据库设计 公益商城-组织表

MySQL数据库设计 公益商城-角色表

MySQL数据库设计 公益商城-角色权限关联表

MySQL数据库设计 公益商城-管理员表

MySQL数据库设计 公益商城-管理员登陆表

MySQL数据库设计 公益商城-管理员角色关联表

MySQL数据库设计 公益商城-系统日志表

MySQL数据库设计 公益商城-收获地址表

MySQL数据库设计 公益商城-广告位管理表

MySQL数据库设计 公益商城-分类表

MySQL数据库设计 公益商城-类目广告表

MySQL数据库设计 公益商城-评价表

MySQL数据库设计 公益商城-评论回复表

MySQL数据库设计 公益商城-邮箱记录表

MySQL数据库设计 公益商城-收藏夹表

MySQL数据库设计 公益商城-产品类型表

MySQL数据库设计 公益商城-商品标签表



回到顶部 ↑