MySQL Create Table SQL
Table Structure: okayapi_pinot_generic_json_entity:/tablelist/okayapi_pinot_generic_json_entity.html
-- MySQL Table okayapi_pinot_generic_json_entity
-- From: OkayAPI.com
CREATE TABLE `okayapi_pinot_generic_json_entity` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`json_val` text NULL COMMENT '',
`beanClass` varchar(200) NULL COMMENT '',
`version` int(10) NULL COMMENT '',
KEY `json_val` (`json_val`),
KEY `beanClass` (`beanClass`),
KEY `version` (`version`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OLAP存储分析-JSON实体';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
json_val | text | 是 | ||||
beanClass | varchar(200) | 是 | ||||
version | int(10) | 是 |