MySQL数据库表结构设计
第 1-10 条, 共 10 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
user_id | int(11) | 否 | 用户编号 | 无索引 | ||
sincerity_level | int(5) | 否 | 诚信度 | 无索引 | ||
good_opinion_level | int(5) | 否 | 好评度 | 无索引 | ||
transaction_sum | int(11) | 是 | 成交额 | 无索引 | ||
fans_sum | int(11) | 是 | 粉丝总数 | 无索引 | ||
quality_score | int(5) | 是 | 服务质量 | 无索引 | ||
speed_score | int(5) | 是 | 完成速度 | 无索引 | ||
service_socre | int(5) | 是 | 服务满意度 | 无索引 | ||
create_time | int(11) | 是 | 创建时间 | 无索引 | ||
delete_time | int(11) | 是 | 删除时间 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:广告宝-服务评价表:https://open.yesapi.cn/tablelist/yesapi_guanggaobao_service_evaluation.html
-- 数据库大全:广告宝-服务评价表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_guanggaobao_service_evaluation` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NULL COMMENT '用户编号',
`sincerity_level` int(5) NULL COMMENT '诚信度',
`good_opinion_level` int(5) NULL COMMENT '好评度',
`transaction_sum` int(11) NULL COMMENT '成交额',
`fans_sum` int(11) NULL COMMENT '粉丝总数',
`quality_score` int(5) NULL COMMENT '服务质量',
`speed_score` int(5) NULL COMMENT '完成速度',
`service_socre` int(5) NULL COMMENT '服务满意度',
`create_time` int(11) NULL COMMENT '创建时间',
`delete_time` int(11) NULL COMMENT '删除时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '广告宝-服务评价表';
复制后,到数据库执行,即可创建此数据库表。