ホームページ  >  記事  >  データベース  >  MySQL クライアント サーバーのヘルプ

MySQL クライアント サーバーのヘルプ

WBOY
WBOY転載
2023-09-18 23:25:061382ブラウズ

MySQL 客户端服务器端帮助

MySQL クライアント サーバー サイド ヘルプについて学びましょう -

mysql> help search_string

上記の「help」コマンドに引数が指定されている場合、mysql はそれを使用します。 MySQL リファレンス マニュアルのコンテンツのサーバー側ヘルプにアクセスするための検索文字列として使用します。このコマンドを正しく操作するには、ヘルプ トピック情報を使用して mysql データベース内のヘルプ テーブルを初期化する必要があります。

検索文字列が一致しない場合、検索操作は失敗します。これを理解するために例を見てみましょう -

mysql> help me

Output

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

help content コマンドを使用して、ヘルプ カテゴリのリストを表示できます。これを理解するために例を挙げてみましょう -

mysql> help contents

Output

You asked for help about help category: "Contents"
For more information, type &#39;help <item>&#39;, 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

output

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

以上がMySQL クライアント サーバーのヘルプの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。