Home > Database > Mysql Tutorial > body text

MySQL client server help

WBOY
Release: 2023-09-18 23:25:06
forward
1265 people have browsed it

MySQL 客户端服务器端帮助

Let's learn about MySQL Client-Server-Side Help-

mysql> help search_string
Copy after login

If an argument is provided to the above "help" command, mysql will use it as a search String to access server-side help in the MySQL Reference Manual content. Correct operation of this command requires initializing the help tables in the mysql database with help topic information.

If the search string does not match, the search operation fails. Let us take an example to understand this -

mysql> help me
Copy after login

Output

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

We can use the help content command to view the list of help categories. Let us take an example to understand this -

mysql> help contents
Copy after login

Output

You asked for help about help category: "Contents"
For more information, type 'help ', where  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
Copy after login

If the search string matches multiple items, then mysql will display a list of matching topics. Let us take an example to understand this -

mysql > help logs
Copy after login

output

Many help items for your request exist.
To make a more specific request, please type 'help ',
where  is one of the following topics:
   SHOW
   SHOW BINARY LOGS
   SHOW ENGINE
   SHOW LOGS
Copy after login

The above is the detailed content of MySQL client server help. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!