#MySQL provides the help command to get server-side help. The syntax of this command is as follows -
mysql> help search_string
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
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!