mysql Server-Side Help


If you provide an argument to the help command, mysql uses it as a search string to access server-side help from the contents of the MariaDB Reference Manual. The proper operation of this command requires that the help tables in the MariaDB database be initialized with help topic information (see , "Server-Side Help").

If there is no match for the search string, the search fails:

mysql> help me
Nothing found Please try to run 'help contents' for a list of all accessible topics

Use help contents to see a list of the help categories:

mysql> help contents
You asked for help about help category: 'Contents'
For more information, type 'help <item>', where <item> is one of the following categories:
 Account Management
 Administration
 Data Definition
 Data Manipulation
 Data Types
 Functions
 Functions and Modifiers for Use with GROUP BY
 Geographic Features
 Language Structure
 Plugins
 Storage Engines
 Stored Routines
 Table Maintenance
 Transactions
 Triggers

If the search string matches multiple items, mysql shows a list of matching topics:

mysql> help logs
Many help items for your request exist.
To make a more specific request, please type 'help <item>',
where <item> is one of the following topics:
 SHOW
 SHOW BINARY LOGS
 SHOW ENGINE
 SHOW LOGS

Use a topic as the search string to see the help entry for that topic:

Retornar