MySQL Create Table SQL
Table Structure: okayapi_pinot_session_index:/tablelist/okayapi_pinot_session_index.html
-- MySQL Table okayapi_pinot_session_index
-- From: OkayAPI.com
CREATE TABLE `okayapi_pinot_session_index` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`base_id` bigint(20) NULL COMMENT '',
`session_key` char(64) NULL COMMENT '',
`principal_type` varchar(32) NULL COMMENT '',
`version` int(10) NULL COMMENT '',
KEY `base_id` (`base_id`),
KEY `session_key` (`session_key`),
KEY `principal_type` (`principal_type`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
base_id | bigint(20) | 否 | ||||
session_key | char(64) | 否 | ||||
principal_type | varchar(32) | 是 | ||||
version | int(10) | 是 |