+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_pinot_data_completeness_config_index:/tablelist/okayapi_pinot_data_completeness_config_index.html


-- MySQL Table okayapi_pinot_data_completeness_config_index
-- From: OkayAPI.com
CREATE TABLE `okayapi_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 '',
    KEY `dataset` (`dataset`),
    KEY `date_to_check_in_ms` (`date_to_check_in_ms`),
    KEY `date_to_check_in_sdf` (`date_to_check_in_sdf`),
    KEY `data_complete` (`data_complete`),
    KEY `percent_complete` (`percent_complete`),
    KEY `base_id` (`base_id`),
    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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
datasetvarchar(200)
date_to_check_in_msbigint(20)
date_to_check_in_sdfvarchar(20)
data_completetinyint(1)
percent_completedouble
base_idbigint(20)
versionint(10)

Guess You Like

MySQL Table Design okayapi_bi_crm_contacts

MySQL Table Design okayapi_bi_account

MySQL Table Design okayapi_bi_analyzereport

MySQL Table Design okayapi_bi_auth

MySQL Table Design okayapi_bi_blacklist

MySQL Table Design okayapi_bi_category

MySQL Table Design okayapi_bi_datasource

MySQL Table Design okayapi_bi_datatable

MySQL Table Design okayapi_bi_log_report

MySQL Table Design okayapi_bi_log_request

MySQL Table Design okayapi_bi_metadata

MySQL Table Design okayapi_bi_project

MySQL Table Design okayapi_bi_role

MySQL Table Design okayapi_bi_role_group

MySQL Table Design okayapi_pinot_generic_json_entity

MySQL Table Design okayapi_pinot_anomaly_function_index

MySQL Table Design okayapi_pinot_job_index

MySQL Table Design okayapi_pinot_task_index

MySQL Table Design okayapi_pinot_raw_anomaly_result_index

MySQL Table Design okayapi_pinot_merged_anomaly_result_index

TOP ↑