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

MySQL建表SQL语句

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


-- 数据库大全:saixs广告管理-广告
-- 来源:YesApi.cn
CREATE TABLE `yesapi_saixs_ad_ad` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `ad_name` varchar(100) NULL COMMENT '广告名称',
    `ad_url` varchar(200) NULL COMMENT '广告链接地址',
    `ad_site` int(11) NULL COMMENT '广告位',
    `site` int(11) NULL COMMENT '',
    `showsl` int(11) NULL DEFAULT '0' COMMENT '显示数量',
    `clicks` int(11) NULL DEFAULT '0' COMMENT '点击率',
    `image` varchar(100) NULL COMMENT '展示图片或flash',
    `price` int(11) NULL COMMENT '价格',
    `up_time` date NULL COMMENT '上线时间',
    `down_time` date NULL COMMENT '下线时间',
    `add_user` tinytext NULL COMMENT '添加用户',
    `state` int(11) NULL DEFAULT '0' COMMENT '状态',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'saixs广告管理-广告';

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


MySQL数据库表结构设计

第 1-12 条, 共 12 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
ad_namevarchar(100)广告名称无索引
ad_urlvarchar(200)广告链接地址无索引
ad_siteint(11)广告位无索引
siteint(11)无索引
showslint(11)0显示数量无索引0
clicksint(11)0点击率无索引0
imagevarchar(100)展示图片或flash无索引
priceint(11)价格无索引
up_timedate上线时间无索引
down_timedate下线时间无索引
add_usertinytext添加用户无索引
stateint(11)0状态无索引0

猜你喜欢

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



回到顶部 ↑