# mysql.help\_keyword Table

`mysql.help_keyword` is one of the four tables used by the [HELP command](https://mariadb.com/docs/server/reference/sql-statements/administrative-sql-statements/help-command). It is populated when the server is installed by the `fill_help_tables.sql` script. The other help tables are [help\_relation](https://mariadb.com/docs/server/reference/system-tables/the-mysql-database-tables/mysql-help_relation-table), [help\_category](https://mariadb.com/docs/server/reference/system-tables/the-mysql-database-tables/mysql-help_category-table) and [help\_topic](https://mariadb.com/docs/server/reference/system-tables/the-mysql-database-tables/mysql-help_topic-table).

This table uses the [Aria](https://mariadb.com/docs/server/server-usage/storage-engines/aria) storage engine.

The `mysql.help_keyword` table contains the following fields:

| Field             | Type             | Null | Key | Default | Description |
| ----------------- | ---------------- | ---- | --- | ------- | ----------- |
| help\_keyword\_id | int(10) unsigned | NO   | PRI | NULL    |             |
| name              | char(64)         | NO   | UNI | NULL    |             |

## Example

```sql
SELECT * FROM help_keyword;
+-----------------+-------------------------------+
| help_keyword_id | name                          |
+-----------------+-------------------------------+
|               0 | JOIN                          |
|               1 | HOST                          |
|               2 | REPEAT                        |
|               3 | SERIALIZABLE                  |
|               4 | REPLACE                       |
|               5 | AT                            |
|               6 | SCHEDULE                      |
|               7 | RETURNS                       |
|               8 | STARTS                        |
|               9 | MASTER_SSL_CA                 |
|              10 | NCHAR                         |
|              11 | COLUMNS                       |
|              12 | COMPLETION                    |
...
```

<sub>*This page is licensed: CC BY-SA / Gnu FDL*</sub>

{% @marketo/form formId="4316" %}
