You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
YZWL/IDEA/mysql/help_relation.sql

11 lines
345 B

create table mysql.help_relation
(
help_topic_id int unsigned not null,
help_keyword_id int unsigned not null,
primary key (help_keyword_id, help_topic_id)
)
comment 'keyword-topic relation' charset = utf8mb3
row_format = DYNAMIC
stats_persistent = 0;