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

MySQL建表SQL语句

数据库结构:超级外卖-文章分类:https://open.yesapi.cn/tablelist/yesapi_sn_article_cat.html


-- 数据库大全:超级外卖-文章分类
-- 来源:YesApi.cn
CREATE TABLE `yesapi_sn_article_cat` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `acid` int(11) NULL COMMENT '',
    `afid` int(11) NULL COMMENT '',
    `aname` varchar(80) NULL COMMENT '',
    `dir` char(20) NULL COMMENT '',
    `atop` int(2) NULL DEFAULT '0' COMMENT '',
    `apic` varchar(300) NULL COMMENT '',
    `wap` int(2) NULL DEFAULT '0' COMMENT '',
    `sort` int(2) NULL DEFAULT '0' COMMENT '',
    `keyword` char(200) NULL COMMENT '',
    `ades` char(200) NULL COMMENT '',
    `acreate_time` int(13) NULL COMMENT '',
    `ispic` int(2) NULL DEFAULT '0' COMMENT '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '超级外卖-文章分类';

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


MySQL数据库表结构设计

第 1-12 条, 共 12 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
acidint(11)无索引
afidint(11)无索引
anamevarchar(80)无索引
dirchar(20)无索引
atopint(2)0无索引0
apicvarchar(300)无索引
wapint(2)0无索引0
sortint(2)0无索引0
keywordchar(200)无索引
adeschar(200)无索引
acreate_timeint(13)无索引
ispicint(2)0无索引0

猜你喜欢

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

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

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

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

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

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

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

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

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

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

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

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

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



回到顶部 ↑