MySQL クライアント サーバー サイド ヘルプについて学びましょう -
mysql> help search_string
上記の「help」コマンドに引数が指定されている場合、mysql はそれを使用します。 MySQL リファレンス マニュアルのコンテンツのサーバー側ヘルプにアクセスするための検索文字列として使用します。このコマンドを正しく操作するには、ヘルプ トピック情報を使用して mysql データベース内のヘルプ テーブルを初期化する必要があります。
検索文字列が一致しない場合、検索操作は失敗します。これを理解するために例を見てみましょう -
mysql> help me
Nothing found Please try to run 'help contents' for a list of all accessible topics
help content コマンドを使用して、ヘルプ カテゴリのリストを表示できます。これを理解するために例を挙げてみましょう -
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 クライアント サーバーのヘルプの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。