MySQL Create Table SQL
Table Structure: okayapi_pinot_evaluation_index:/tablelist/okayapi_pinot_evaluation_index.html
-- MySQL Table okayapi_pinot_evaluation_index
-- From: OkayAPI.com
CREATE TABLE `okayapi_pinot_evaluation_index` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`base_id` bigint(20) NULL COMMENT '',
`detection_config_id` bigint(20) NULL COMMENT '',
`start_time` bigint(20) NULL COMMENT '',
`end_time` bigint(20) NULL COMMENT '',
`detectorName` varchar(128) NULL COMMENT '',
`mape` double NULL COMMENT '',
`version` int(10) NULL COMMENT '',
KEY `base_id` (`base_id`),
KEY `detection_config_id` (`detection_config_id`),
KEY `start_time` (`start_time`),
KEY `end_time` (`end_time`),
KEY `detectorName` (`detectorName`),
KEY `mape` (`mape`),
KEY `version` (`version`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OLAP存储分析-执行';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-7 of 7 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
base_id | bigint(20) | 否 | ||||
detection_config_id | bigint(20) | 否 | ||||
start_time | bigint(20) | 否 | ||||
end_time | bigint(20) | 否 | ||||
detectorName | varchar(128) | 是 | ||||
mape | double | 是 | ||||
version | int(10) | 是 |