mysql> help search_string
mysql使用help命令的参数作为搜索字符串来访问mysql参考手册的内容。如果搜索字符串不匹配,则搜索将失败。
例如 - 假设我想获得有关 integer 数据类型的服务器端帮助其命令如下 -
mysql> help integername: '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
以上就是如何获得“mysql服务器端帮助”?的详细内容。
