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

MySQL建表SQL语句

数据库结构:saixs广告管理-广告站点:https://open.yesapi.cn/tablelist/yesapi_saixs_ad_ad_site.html


-- 数据库大全:saixs广告管理-广告站点
-- 来源:YesApi.cn
CREATE TABLE `yesapi_saixs_ad_ad_site` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `ad_site_name` tinytext NULL COMMENT '广告位名称',
    `ad_site_name_short` tinytext NULL COMMENT '',
    `height` int(11) NULL DEFAULT '0' COMMENT '高度',
    `width` int(11) NULL DEFAULT '0' COMMENT '宽度',
    `site` int(11) NULL DEFAULT '0' COMMENT '站点:首页\房产等',
    `sl` int(11) NULL DEFAULT '1' COMMENT '',
    `shape` int(11) NULL DEFAULT '0' COMMENT '形式0为默认单体1为平行2为内置当调用数量不为1的时候需要选择',
    `showsl` int(11) NULL DEFAULT '0' COMMENT '调用数量',
    `clicks` int(11) NULL DEFAULT '0' COMMENT '点击率',
    `ad_site_css` text NULL COMMENT '广告位css~~',
    `ad_site_default` text NULL COMMENT '默认广告位代码',
    `add_user` tinytext NULL COMMENT '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'saixs广告管理-广告站点';

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


MySQL数据库表结构设计

第 1-12 条, 共 12 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
ad_site_nametinytext广告位名称无索引
ad_site_name_shorttinytext无索引
heightint(11)0高度无索引0
widthint(11)0宽度无索引0
siteint(11)0站点:首页\房产等无索引0
slint(11)1无索引1
shapeint(11)0形式0为默认单体1为平行2为内置当调用数量不为1的时候需要选择无索引0
showslint(11)0调用数量无索引0
clicksint(11)0点击率无索引0
ad_site_csstext广告位css~~无索引
ad_site_defaulttext默认广告位代码无索引
add_usertinytext无索引

猜你喜欢

MySQL数据库设计 广告管理-广告效果统计总体表

MySQL数据库设计 广告管理-广告效果统计小时粒度表

MySQL数据库设计 广告管理-广告主表

MySQL数据库设计 广告管理-广告日志表

MySQL数据库设计 广告管理-广告信息主表

MySQL数据库设计 广告管理-广告物料表

MySQL数据库设计 广告管理-管理员

MySQL数据库设计 广告管理-用户表

MySQL数据库设计 广告管理-广告投放表

MySQL数据库设计 广告管理-流量卡密表

MySQL数据库设计 广告管理-用户群表

MySQL数据库设计 saixs广告管理-广告

MySQL数据库设计 saixs广告管理-管理员

MySQL数据库设计 saixs广告管理-IP

MySQL数据库设计 saixs广告管理-站点



回到顶部 ↑