MySQL Create Table SQL
Table Structure: okayapi_saixs_ad_ad:/tablelist/okayapi_saixs_ad_ad.html
-- MySQL Table okayapi_saixs_ad_ad
-- From: OkayAPI.com
CREATE TABLE `okayapi_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 '状态',
KEY `ad_name` (`ad_name`),
KEY `ad_url` (`ad_url`),
KEY `ad_site` (`ad_site`),
KEY `site` (`site`),
KEY `showsl` (`showsl`),
KEY `clicks` (`clicks`),
KEY `image` (`image`),
KEY `price` (`price`),
KEY `up_time` (`up_time`),
KEY `down_time` (`down_time`),
KEY `add_user` (`add_user`),
KEY `state` (`state`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'saixs广告管理-广告';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-12 of 12 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
ad_name | varchar(100) | 是 | 广告名称 | |||
ad_url | varchar(200) | 是 | 广告链接地址 | |||
ad_site | int(11) | 是 | 广告位 | |||
site | int(11) | 是 | ||||
showsl | int(11) | 0 | 是 | 显示数量 | 0 | |
clicks | int(11) | 0 | 是 | 点击率 | 0 | |
image | varchar(100) | 是 | 展示图片或flash | |||
price | int(11) | 是 | 价格 | |||
up_time | date | 是 | 上线时间 | |||
down_time | date | 是 | 下线时间 | |||
add_user | tinytext | 是 | 添加用户 | |||
state | int(11) | 0 | 是 | 状态 | 0 |