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

MySQL建表SQL语句

数据库结构:广告宝-我的粉丝表:https://open.yesapi.cn/tablelist/yesapi_guanggaobao_my_fans.html


-- 数据库大全:广告宝-我的粉丝表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_guanggaobao_my_fans` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `user_id` int(11) NULL COMMENT '用户编号',
    `fan_id` int(11) NULL COMMENT '粉丝编号(外键)',
    `create_time` int(11) NULL COMMENT '创建时间',
    `delete_time` int(11) NULL COMMENT '删除时间',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '广告宝-我的粉丝表';

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


MySQL数据库表结构设计

第 1-4 条, 共 4 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
user_idint(11)用户编号无索引
fan_idint(11)粉丝编号(外键)无索引
create_timeint(11)创建时间无索引
delete_timeint(11)删除时间无索引

猜你喜欢

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

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

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

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

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

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

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

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

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

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

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

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

MySQL数据库设计 广告宝-系统公告表

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



回到顶部 ↑