mysql学习笔记之帮助文档
查看系统帮助 help contents mysql help contents;You asked for help about help category: "Contents"For more information, type 'help item', where item is one of the followingcategories: Account Management Administration Compound Statemen
<p>查看系统帮助</p>
help contents
mysql> help contents;
You asked for help about help category: "Contents"
For more information, type 'help
帮助文档的目录列表
查看数据类型
help data types
mysql> help data types;
You asked for help about help category: "Data Types"
For more information, type 'help
查看整数
mysql> help int; Name: 'INT' Description: INT[(M)] [UNSIGNED] [ZEROFILL] A normal-size integer. The signed range is -2147483648 to 2147483647. The unsigned range is 0 to 4294967295. URL: http://dev.mysql.com/doc/refman/5.7/en/numeric-type-overview.html mysql> help tinyint; Name: 'TINYINT' Description: TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255. URL: http://dev.mysql.com/doc/refman/5.7/en/numeric-type-overview.html