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

MySQL建表SQL语句

数据库结构:超级外卖-地址:https://open.yesapi.cn/tablelist/yesapi_sn_faddress.html


-- 数据库大全:超级外卖-地址
-- 来源:YesApi.cn
CREATE TABLE `yesapi_sn_faddress` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `faddid` int(15) NULL COMMENT '',
    `uid` int(10) NULL COMMENT '',
    `cityid` int(10) NULL COMMENT '',
    `cityname` char(90) NULL COMMENT '',
    `areaid` int(15) NULL DEFAULT '0' COMMENT '',
    `areaname` char(60) NULL COMMENT '',
    `address` char(100) NULL COMMENT '',
    `addtop` int(5) NULL DEFAULT '0' COMMENT '',
    `ctime` int(15) NULL COMMENT '',
    `yesapi_sn_faddress_name` char(60) NULL COMMENT '',
    `tel` char(60) NULL COMMENT '',
    KEY `uid` (`uid`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '超级外卖-地址';

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


MySQL数据库表结构设计

第 1-11 条, 共 11 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
faddidint(15)无索引
uidint(10)普通索引
cityidint(10)无索引
citynamechar(90)无索引
areaidint(15)0无索引0
areanamechar(60)无索引
addresschar(100)无索引
addtopint(5)0无索引0
ctimeint(15)无索引
yesapi_sn_faddress_namechar(60)无索引
telchar(60)无索引

猜你喜欢

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

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

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

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

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

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

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

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

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

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

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

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

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



回到顶部 ↑