MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
product_id | bigint(20) | 是 | 无索引 | |||
product_name | varchar(64) | 是 | 无索引 | |||
recommend_status | int(1) | 是 | 无索引 | |||
sort | int(1) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-新鲜好物表:https://open.yesapi.cn/tablelist/yesapi_mall_sms_home_new_product.html
-- 数据库大全:电商-新鲜好物表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_sms_home_new_product` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint(20) NULL COMMENT '',
`product_name` varchar(64) NULL COMMENT '',
`recommend_status` int(1) NULL COMMENT '',
`sort` int(1) NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-新鲜好物表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航