mysql> help search_string
help
コマンドに引数を提供した場合、mysql
は MySQL
リファレンスマニュアルの内容からサーバーサイドヘルプをアクセスするための検索文字列として引数を使用します。このコマンドの正当なオペレーションは
mysql
データベース内のヘルプテーブルがヘルプトピック情報で初期化されていることを要求します
(Server-Side Helpを参照してください)。
検索文字列にマッチがない場合、検索は失敗に終わります。
mysql> help me
Nothing found
Please try to run 'help contents' for a list of all accessible topics
ヘルプカテゴリのリストを閲覧するには help contents を使用してください。
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
検索文字列にマッチが多数ある場合は、mysql はマッチするトピックのリストを表示します。
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
トピックのヘルプ情報を閲覧するには、トピックを検索文字列として使用してください。
mysql> help show binary logs
Name: 'SHOW BINARY LOGS'
Description:
Syntax:
SHOW BINARY LOGS
SHOW MASTER LOGS
Lists the binary log files on the server. This statement is used as
part of the procedure described in [purge-binary-logs], that shows how
to determine which logs can be purged.
mysql> SHOW BINARY LOGS;
+---------------+-----------+
| Log_name | File_size |
+---------------+-----------+
| binlog.000015 | 724935 |
| binlog.000016 | 733481 |
+---------------+-----------+