MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
dataset | varchar(200) | 否 | 无索引 | |||
date_to_check_in_ms | bigint(20) | 否 | 无索引 | |||
date_to_check_in_sdf | varchar(20) | 是 | 无索引 | |||
data_complete | tinyint(1) | 是 | 无索引 | |||
percent_complete | double | 是 | 无索引 | |||
base_id | bigint(20) | 否 | 无索引 | |||
version | int(10) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:OLAP存储分析-数据配置:https://open.yesapi.cn/tablelist/yesapi_pinot_data_completeness_config_index.html
-- 数据库大全:OLAP存储分析-数据配置
-- 来源:YesApi.cn
CREATE TABLE `yesapi_pinot_data_completeness_config_index` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`dataset` varchar(200) NULL COMMENT '',
`date_to_check_in_ms` bigint(20) NULL COMMENT '',
`date_to_check_in_sdf` varchar(20) NULL COMMENT '',
`data_complete` tinyint(1) NULL COMMENT '',
`percent_complete` double NULL COMMENT '',
`base_id` bigint(20) NULL COMMENT '',
`version` int(10) NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OLAP存储分析-数据配置';
复制后,到数据库执行,即可创建此数据库表。