MySQL Create Table SQL
Table Structure: okayapi_pinot_dataset_config_index:/tablelist/okayapi_pinot_dataset_config_index.html
-- MySQL Table okayapi_pinot_dataset_config_index
-- From: OkayAPI.com
CREATE TABLE `okayapi_pinot_dataset_config_index` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`dataset` varchar(200) NULL COMMENT '',
`active` tinyint(1) NULL COMMENT '',
`requires_completeness_check` tinyint(1) NULL COMMENT '',
`base_id` bigint(20) NULL COMMENT '',
`version` int(10) NULL COMMENT '',
KEY `dataset` (`dataset`),
KEY `active` (`active`),
KEY `requires_completeness_check` (`requires_completeness_check`),
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-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
dataset | varchar(200) | 否 | ||||
active | tinyint(1) | 是 | ||||
requires_completeness_check | tinyint(1) | 是 | ||||
base_id | bigint(20) | 否 | ||||
version | int(10) | 是 |