MySQL数据库表结构设计
第 1-25 条, 共 25 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
oid | int(30) | 否 | 无索引 | |||
orderprice | float(10,2) | 是 | 无索引 | |||
ordercount | int(10) | 是 | 无索引 | |||
zhekou | float(10,2) | 是 | 无索引 | |||
pay | float(10,2) | 是 | 无索引 | |||
paytype | int(2) | 0 | 是 | 无索引 | 0 | |
ucount | int(10) | 0 | 是 | 无索引 | 0 | |
uid | int(15) | 是 | 无索引 | |||
uname | char(60) | 是 | 无索引 | |||
pid | char(100) | 是 | 无索引 | |||
shopspay | int(11) | 0 | 是 | 配送费用 | 无索引 | 0 |
shopname | char(100) | 是 | 无索引 | |||
gid | char(90) | 是 | 无索引 | |||
order_ctime | int(16) | 是 | 无索引 | |||
order_endtime | int(16) | 是 | 无索引 | |||
print_time | int(16) | 是 | 无索引 | |||
print_name | char(100) | 是 | 无索引 | |||
morecontent | char(200) | 是 | 无索引 | |||
otel | char(80) | 是 | 无索引 | |||
oman | char(100) | 是 | 无索引 | |||
oaddress | char(200) | 是 | 无索引 | |||
orderstatus | int(1) | 1 | 是 | 无索引 | 1 | |
ordersource | char(40) | 是 | 无索引 | |||
couponid | int(30) | 0 | 是 | 无索引 | 0 | |
order_dtime | datetime | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:超级外卖-外卖分类:https://open.yesapi.cn/tablelist/yesapi_sn_foodorder.html
-- 数据库大全:超级外卖-外卖分类
-- 来源:YesApi.cn
CREATE TABLE `yesapi_sn_foodorder` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`oid` int(30) NULL COMMENT '',
`orderprice` float(10,2) NULL COMMENT '',
`ordercount` int(10) NULL COMMENT '',
`zhekou` float(10,2) NULL COMMENT '',
`pay` float(10,2) NULL COMMENT '',
`paytype` int(2) NULL DEFAULT '0' COMMENT '',
`ucount` int(10) NULL DEFAULT '0' COMMENT '',
`uid` int(15) NULL COMMENT '',
`uname` char(60) NULL COMMENT '',
`pid` char(100) NULL COMMENT '',
`shopspay` int(11) NULL DEFAULT '0' COMMENT '配送费用',
`shopname` char(100) NULL COMMENT '',
`gid` char(90) NULL COMMENT '',
`order_ctime` int(16) NULL COMMENT '',
`order_endtime` int(16) NULL COMMENT '',
`print_time` int(16) NULL COMMENT '',
`print_name` char(100) NULL COMMENT '',
`morecontent` char(200) NULL COMMENT '',
`otel` char(80) NULL COMMENT '',
`oman` char(100) NULL COMMENT '',
`oaddress` char(200) NULL COMMENT '',
`orderstatus` int(1) NULL DEFAULT '1' COMMENT '',
`ordersource` char(40) NULL COMMENT '',
`couponid` int(30) NULL DEFAULT '0' COMMENT '',
`order_dtime` datetime NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '超级外卖-外卖分类';
复制后,到数据库执行,即可创建此数据库表。