Home > Database > Mysql Tutorial > How to get 'MySQL server-side help'?

How to get 'MySQL server-side help'?

PHPz
Release: 2023-09-02 09:41:05
forward
641 people have browsed it

How to get MySQL server-side help?

#MySQL provides the help command to get server-side help. The syntax of this command is as follows -

mysql> help search_string
Copy after login

MySQL uses the parameters of the help command as a search string to access the contents of the MySQL reference manual. If the search string does not match, the search will fail.

For example - Suppose I want to get server side help about INTEGER data type the command is as follows -

mysql> help INTEGER
Name: 'INTEGER'
Description:
INTEGER[(M)] [UNSIGNED] [ZEROFILL]

This type is a synonym for INT.

URL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html
Copy after login

The above is the detailed content of How to get 'MySQL server-side 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 admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template