MySQL数据库表结构设计
第 1-18 条, 共 18 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
user_id | mediumint(8) | 0 | 否 | 无索引 | 0 | |
session_id | char(32) | 否 | 普通索引 | |||
goods_id | mediumint(8) | 0 | 否 | 无索引 | 0 | |
goods_sn | varchar(60) | 否 | 无索引 | |||
product_id | mediumint(8) | 0 | 否 | 无索引 | 0 | |
goods_name | varchar(120) | 否 | 无索引 | |||
market_price | decimal(10,2) unsigned | 0.00 | 否 | 无索引 | 0.00 | |
goods_price | decimal(10,2) | 0.00 | 否 | 无索引 | 0.00 | |
goods_number | smallint(5) | 0 | 否 | 无索引 | 0 | |
goods_attr | text | 否 | 无索引 | |||
is_real | tinyint(1) | 0 | 否 | 无索引 | 0 | |
extension_code | varchar(30) | 否 | 无索引 | |||
parent_id | mediumint(8) | 0 | 否 | 无索引 | 0 | |
rec_type | tinyint(1) | 0 | 否 | 无索引 | 0 | |
is_gift | smallint(5) | 0 | 否 | 无索引 | 0 | |
is_shipping | tinyint(1) | 0 | 否 | 无索引 | 0 | |
can_handsel | tinyint(3) | 0 | 否 | 无索引 | 0 | |
goods_attr_id | varchar(255) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:汽车故障诊断-:https://open.yesapi.cn/tablelist/yesapi_ecs_cart.html
-- 数据库大全:汽车故障诊断-
-- 来源:YesApi.cn
CREATE TABLE `yesapi_ecs_cart` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` mediumint(8) NOT NULL DEFAULT '0' COMMENT '',
`session_id` char(32) NOT NULL COMMENT '',
`goods_id` mediumint(8) NOT NULL DEFAULT '0' COMMENT '',
`goods_sn` varchar(60) NOT NULL COMMENT '',
`product_id` mediumint(8) NOT NULL DEFAULT '0' COMMENT '',
`goods_name` varchar(120) NOT NULL COMMENT '',
`market_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '',
`goods_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '',
`goods_number` smallint(5) NOT NULL DEFAULT '0' COMMENT '',
`goods_attr` text NOT NULL COMMENT '',
`is_real` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`extension_code` varchar(30) NOT NULL COMMENT '',
`parent_id` mediumint(8) NOT NULL DEFAULT '0' COMMENT '',
`rec_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`is_gift` smallint(5) NOT NULL DEFAULT '0' COMMENT '',
`is_shipping` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`can_handsel` tinyint(3) NOT NULL DEFAULT '0' COMMENT '',
`goods_attr_id` varchar(255) NOT NULL COMMENT '',
KEY `session_id` (`session_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '汽车故障诊断-';
复制后,到数据库执行,即可创建此数据库表。