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

MySQL建表SQL语句 免费MySQL数据库表结构设计

数据库结构:超级外卖-消息:https://open.yesapi.cn/tablelist/yesapi_sn_message.html


-- 数据库大全:超级外卖-消息
-- 来源:YesApi.cn
CREATE TABLE `yesapi_sn_message` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `msid` int(10) NULL COMMENT '',
    `mtype` int(1) NULL DEFAULT '0' COMMENT '',
    `sid` int(10) NULL COMMENT '',
    `sname` char(100) NULL COMMENT '',
    `uid` int(10) NULL COMMENT '',
    `uname` char(200) NULL COMMENT '',
    `upic` char(200) NULL COMMENT '',
    `mcontent` varchar(600) NULL COMMENT '',
    `pid` int(10) NULL DEFAULT '0' COMMENT '',
    `top` int(2) NULL DEFAULT '0' COMMENT '',
    `create_time` int(15) NULL COMMENT '',
    `isweb` int(1) NULL DEFAULT '0' COMMENT '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '超级外卖-消息';

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


MySQL数据库表结构设计

第 1-12 条, 共 12 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
msidint(10)无索引
mtypeint(1)0无索引0
sidint(10)无索引
snamechar(100)无索引
uidint(10)无索引
unamechar(200)无索引
upicchar(200)无索引
mcontentvarchar(600)无索引
pidint(10)0无索引0
topint(2)0无索引0
create_timeint(15)无索引
iswebint(1)0无索引0

猜你喜欢

MySQL数据库设计 超级外卖-文章

MySQL数据库设计 超级外卖-文章分类

MySQL数据库设计 超级外卖-配置

MySQL数据库设计 超级外卖-充值

MySQL数据库设计 超级外卖-充值类目

MySQL数据库设计 超级外卖-地址

MySQL数据库设计 超级外卖-外卖

MySQL数据库设计 超级外卖-外卖分类

MySQL数据库设计 超级外卖-外卖分类

MySQL数据库设计 超级外卖-外卖明细

MySQL数据库设计 超级外卖-链接

MySQL数据库设计 超级外卖-会员

MySQL数据库设计 超级外卖-页面



回到顶部 ↑