MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_nideshop_ad_position_name | varchar(60) | ' | 否 | 无索引 | ' | |
width | smallint(5) | 0 | 否 | 无索引 | 0 | |
height | smallint(5) | 0 | 否 | 无索引 | 0 | |
yesapi_nideshop_ad_position_desc | varchar(255) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:微同商城-广告位置:https://open.yesapi.cn/tablelist/yesapi_nideshop_ad_position.html
-- 数据库大全:微同商城-广告位置
-- 来源:YesApi.cn
CREATE TABLE `yesapi_nideshop_ad_position` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_nideshop_ad_position_name` varchar(60) NOT NULL DEFAULT ''' COMMENT '',
`width` smallint(5) NOT NULL DEFAULT '0' COMMENT '',
`height` smallint(5) NOT NULL DEFAULT '0' COMMENT '',
`yesapi_nideshop_ad_position_desc` varchar(255) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '微同商城-广告位置';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢

