MySQL Create Table SQL
Table Structure: okayapi_pinot_job_index:/tablelist/okayapi_pinot_job_index.html
-- MySQL Table okayapi_pinot_job_index
-- From: OkayAPI.com
CREATE TABLE `okayapi_pinot_job_index` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NULL COMMENT '',
`status` varchar(100) NULL COMMENT '',
`type` varchar(100) NULL COMMENT '',
`config_id` bigint(20) NULL COMMENT '',
`schedule_start_time` bigint(20) NULL COMMENT '',
`schedule_end_time` bigint(20) NULL COMMENT '',
`base_id` bigint(20) NULL COMMENT '',
`version` int(10) NULL COMMENT '',
KEY `name` (`name`),
KEY `status` (`status`),
KEY `type` (`type`),
KEY `config_id` (`config_id`),
KEY `schedule_start_time` (`schedule_start_time`),
KEY `schedule_end_time` (`schedule_end_time`),
KEY `base_id` (`base_id`),
KEY `version` (`version`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OLAP存储分析-job';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-8 of 8 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
name | varchar(200) | 否 | ||||
status | varchar(100) | 否 | ||||
type | varchar(100) | 否 | ||||
config_id | bigint(20) | 是 | ||||
schedule_start_time | bigint(20) | 否 | ||||
schedule_end_time | bigint(20) | 否 | ||||
base_id | bigint(20) | 否 | ||||
version | int(10) | 是 |