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

MySQL建表SQL语句

数据库结构:广告宝-系统公告表:https://open.yesapi.cn/tablelist/yesapi_guanggaobao_system_message.html


-- 数据库大全:广告宝-系统公告表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_guanggaobao_system_message` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `title` varchar(50) NULL COMMENT '标题',
    `content` varchar(500) NULL COMMENT '内容',
    `create_time` int(11) NULL COMMENT '创建时间',
    `delete_time` int(11) NULL COMMENT '删除时间',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '广告宝-系统公告表';

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


MySQL数据库表结构设计

第 1-4 条, 共 4 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
titlevarchar(50)标题无索引
contentvarchar(500)内容无索引
create_timeint(11)创建时间无索引
delete_timeint(11)删除时间无索引

猜你喜欢

MySQL数据库设计 广告宝-竞价详情表

MySQL数据库设计 广告宝-用户角色

MySQL数据库设计 广告宝-需求信息图片表

MySQL数据库设计 广告宝-需求信息表

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

MySQL数据库设计 广告宝-注册方式

MySQL数据库设计 广告宝-服务类目

MySQL数据库设计 广告宝-服务评价表

MySQL数据库设计 广告宝-用户基本信息

MySQL数据库设计 广告宝-地址表

MySQL数据库设计 广告宝-第三方授权登录表

MySQL数据库设计 广告宝-我的粉丝表

MySQL数据库设计 广告宝-我的关注

MySQL数据库设计 广告宝-消息表



回到顶部 ↑