`

mysql 帮助文档使用

 
阅读更多

mysql有很完善的帮助文档,在mysql命令行下可以通过? 或者help 加上命令可以查看改命令的帮助信息,

我们查下几个常用的help命令

 

第一层帮助信息:

 ? contents;

 

mysql> ? contents;
You asked for help about help category: "Contents"
For more information, type 'help <item>', where <item> is one of the following
categories:
   Account Management
   Administration
   Compound Statements
   Data Definition
   Data Manipulation
   Data Types
   Functions
   Functions and Modifiers for Use with GROUP BY
   Geographic Features
   Help Metadata
   Language Structure
   Plugins
   Table Maintenance
   Transactions
   User-Defined Functions
   Utility

 

再查看具体每一层的帮助信息

 

  mysql> ? Account Management;

You asked for help about help category: "Account Management"
For more information, type 'help <item>', where <item> is one of the following
topics:
   CREATE USER
   DROP USER
   GRANT
   RENAME USER
   REVOKE
   SET PASSWORD

mysql> ? Administration
You asked for help about help category: "Administration"
For more information, type 'help <item>', where <item> is one of the following
topics:
   BINLOG
   CACHE INDEX
   CHANGE MASTER TO
   DEALLOCATE PREPARE
   EXECUTE STATEMENT
   FLUSH
   FLUSH QUERY CACHE
   HELP COMMAND
   KILL
   LOAD INDEX
   PREPARE
   PURGE BINARY LOGS
   RESET
   RESET MASTER
   RESET SLAVE
   SET
   SET GLOBAL SQL_SLAVE_SKIP_COUNTER
   SET SQL_LOG_BIN
   SHOW
   SHOW AUTHORS
   SHOW BINARY LOGS
   SHOW BINLOG EVENTS
   SHOW CHARACTER SET
   SHOW COLLATION
   SHOW COLUMNS
   SHOW CONTRIBUTORS
   SHOW CREATE DATABASE
   SHOW CREATE EVENT
   SHOW CREATE FUNCTION
   SHOW CREATE PROCEDURE
   SHOW CREATE TABLE
   SHOW CREATE TRIGGER
   SHOW CREATE VIEW
   SHOW DATABASES
   SHOW ENGINE
   SHOW ENGINES
   SHOW ERRORS
   SHOW EVENTS
   SHOW FUNCTION CODE
   SHOW FUNCTION STATUS
   SHOW GRANTS
   SHOW INDEX
   SHOW MASTER STATUS
   SHOW OPEN TABLES
   SHOW PLUGINS
   SHOW PRIVILEGES
   SHOW PROCEDURE CODE
   SHOW PROCEDURE STATUS
   SHOW PROCESSLIST
   SHOW PROFILE
   SHOW PROFILES
   SHOW RELAYLOG EVENTS
   SHOW SLAVE HOSTS
   SHOW SLAVE STATUS
   SHOW STATUS
   SHOW TABLE STATUS
   SHOW TABLES
   SHOW TRIGGERS
   SHOW VARIABLES
   SHOW WARNINGS
   START SLAVE
   STOP SLAVE

mysql> ?  Compound Statements;
You asked for help about help category: "Compound Statements"
For more information, type 'help <item>', where <item> is one of the following
topics:
   BEGIN END
   CASE STATEMENT
   CLOSE
   DECLARE CONDITION
   DECLARE CURSOR
   DECLARE HANDLER
   DECLARE VARIABLE
   FETCH
   IF STATEMENT
   ITERATE
   LEAVE
   LOOP
   OPEN
   REPEAT LOOP
   RESIGNAL
   RETURN
   SELECT INTO
   SET VARIABLE
   SIGNAL
   WHILE

mysql> ? Data Definition;
You asked for help about help category: "Data Definition"
For more information, type 'help <item>', where <item> is one of the following
topics:
   ALTER DATABASE
   ALTER EVENT
   ALTER FUNCTION
   ALTER PROCEDURE
   ALTER SERVER
   ALTER TABLE
   ALTER VIEW
   CONSTRAINT
   CREATE DATABASE
   CREATE EVENT
   CREATE FUNCTION
   CREATE INDEX
   CREATE PROCEDURE
   CREATE SERVER
   CREATE TABLE
   CREATE TRIGGER
   CREATE VIEW
   DROP DATABASE
   DROP EVENT
   DROP FUNCTION
   DROP INDEX
   DROP PROCEDURE
   DROP SERVER
   DROP TABLE
   DROP TRIGGER
   DROP VIEW
   MERGE
   RENAME TABLE
   TRUNCATE TABLE

 

这里可以根据不同的分类显示每个分类下支持的mysql指令

 

  mysql> ? START SLAVE;

Name: 'START SLAVE'
Description:
Syntax:
START SLAVE [thread_type [, thread_type] ... ]
START SLAVE [SQL_THREAD] UNTIL
    MASTER_LOG_FILE = 'log_name', MASTER_LOG_POS = log_pos
START SLAVE [SQL_THREAD] UNTIL
    RELAY_LOG_FILE = 'log_name', RELAY_LOG_POS = log_pos

thread_type: IO_THREAD | SQL_THREAD

START SLAVE with no thread_type options starts both of the slave
threads. The I/O thread reads events from the master server and stores
them in the relay log. The SQL thread reads events from the relay log
and executes them. START SLAVE requires the SUPER privilege.

If START SLAVE succeeds in starting the slave threads, it returns
without any error. However, even in that case, it might be that the
slave threads start and then later stop (for example, because they do
not manage to connect to the master or read its binary log, or some
other problem). START SLAVE does not warn you about this. You must
check the slave's error log for error messages generated by the slave
threads, or check that they are running satisfactorily with SHOW SLAVE
STATUS.

URL: http://dev.mysql.com/doc/refman/5.5/en/start-slave.html


mysql> ? MERGE
Name: 'MERGE'
Description:
The MERGE storage engine, also known as the MRG_MyISAM engine, is a
collection of identical MyISAM tables that can be used as one.
"Identical" means that all tables have identical column and index
information. You cannot merge MyISAM tables in which the columns are
listed in a different order, do not have exactly the same columns, or
have the indexes in different order. However, any or all of the MyISAM
tables can be compressed with myisampack. See
http://dev.mysql.com/doc/refman/5.5/en/myisampack.html. Differences in
table options such as AVG_ROW_LENGTH, MAX_ROWS, or PACK_KEYS do not
matter.

URL: http://dev.mysql.com/doc/refman/5.5/en/merge-storage-engine.html

Examples:
mysql> CREATE TABLE t1 (
    ->    a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    ->    message CHAR(20)) ENGINE=MyISAM
mysql> CREATE TABLE t2 (
    ->    a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    ->    message CHAR(20)) ENGINE=MyISAM
mysql> INSERT INTO t1 (message) VALUES ('Testing'),('table'),('t1')
mysql> INSERT INTO t2 (message) VALUES ('Testing'),('table'),('t2')
mysql> CREATE TABLE total (
    ->    a INT NOT NULL AUTO_INCREMENT,
    ->    message CHAR(20), INDEX(a))
    ->    ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST

mysql> ? create table;
Name: 'CREATE TABLE'
Description:
Syntax:
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
    (create_definition,...)
    [table_options]
    [partition_options]

Or:

CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
    [(create_definition,...)]
    [table_options]
    [partition_options]
    select_statement

Or:

CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
    { LIKE old_tbl_name | (LIKE old_tbl_name) }

create_definition:
    col_name column_definition
  | [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...)
      [index_option] ...
  | {INDEX|KEY} [index_name] [index_type] (index_col_name,...)
      [index_option] ...
  | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]
      [index_name] [index_type] (index_col_name,...)
      [index_option] ...
  | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (index_col_name,...)
      [index_option] ...
  | [CONSTRAINT [symbol]] FOREIGN KEY
      [index_name] (index_col_name,...) reference_definition
  | CHECK (expr)

column_definition:
    data_type [NOT NULL | NULL] [DEFAULT default_value]
      [AUTO_INCREMENT] [UNIQUE [KEY] | [PRIMARY] KEY]
      [COMMENT 'string']
      [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]
      [reference_definition]

data_type:
    BIT[(length)]
  | TINYINT[(length)] [UNSIGNED] [ZEROFILL]
  | SMALLINT[(length)] [UNSIGNED] [ZEROFILL]
  | MEDIUMINT[(length)] [UNSIGNED] [ZEROFILL]
  | INT[(length)] [UNSIGNED] [ZEROFILL]
  | INTEGER[(length)] [UNSIGNED] [ZEROFILL]
  | BIGINT[(length)] [UNSIGNED] [ZEROFILL]
  | REAL[(length,decimals)] [UNSIGNED] [ZEROFILL]
  | DOUBLE[(length,decimals)] [UNSIGNED] [ZEROFILL]
  | FLOAT[(length,decimals)] [UNSIGNED] [ZEROFILL]
  | DECIMAL[(length[,decimals])] [UNSIGNED] [ZEROFILL]
  | NUMERIC[(length[,decimals])] [UNSIGNED] [ZEROFILL]
  | DATE
  | TIME
  | TIMESTAMP
  | DATETIME
  | YEAR
  | CHAR[(length)]
      [CHARACTER SET charset_name] [COLLATE collation_name]
  | VARCHAR(length)
      [CHARACTER SET charset_name] [COLLATE collation_name]
  | BINARY[(length)]
  | VARBINARY(length)
  | TINYBLOB
  | BLOB
  | MEDIUMBLOB
  | LONGBLOB
  | TINYTEXT [BINARY]
      [CHARACTER SET charset_name] [COLLATE collation_name]
  | TEXT [BINARY]
      [CHARACTER SET charset_name] [COLLATE collation_name]
  | MEDIUMTEXT [BINARY]
      [CHARACTER SET charset_name] [COLLATE collation_name]
  | LONGTEXT [BINARY]
      [CHARACTER SET charset_name] [COLLATE collation_name]
  | ENUM(value1,value2,value3,...)
      [CHARACTER SET charset_name] [COLLATE collation_name]
  | SET(value1,value2,value3,...)
      [CHARACTER SET charset_name] [COLLATE collation_name]
  | spatial_type

index_col_name:
    col_name [(length)] [ASC | DESC]

index_type:
    USING {BTREE | HASH}

index_option:
    KEY_BLOCK_SIZE [=] value
  | index_type
  | WITH PARSER parser_name
  | COMMENT 'string'

reference_definition:
    REFERENCES tbl_name (index_col_name,...)
      [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]
      [ON DELETE reference_option]
      [ON UPDATE reference_option]

reference_option:
    RESTRICT | CASCADE | SET NULL | NO ACTION

table_options:
    table_option [[,] table_option] ...

table_option:
    ENGINE [=] engine_name
  | AUTO_INCREMENT [=] value
  | AVG_ROW_LENGTH [=] value
  | [DEFAULT] CHARACTER SET [=] charset_name
  | CHECKSUM [=] {0 | 1}
  | [DEFAULT] COLLATE [=] collation_name
  | COMMENT [=] 'string'
  | CONNECTION [=] 'connect_string'
  | DATA DIRECTORY [=] 'absolute path to directory'
  | DELAY_KEY_WRITE [=] {0 | 1}
  | INDEX DIRECTORY [=] 'absolute path to directory'
  | INSERT_METHOD [=] { NO | FIRST | LAST }
  | KEY_BLOCK_SIZE [=] value
  | MAX_ROWS [=] value
  | MIN_ROWS [=] value
  | PACK_KEYS [=] {0 | 1 | DEFAULT}
  | PASSWORD [=] 'string'
  | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}
  | UNION [=] (tbl_name[,tbl_name]...)

partition_options:
    PARTITION BY
        { [LINEAR] HASH(expr)
        | [LINEAR] KEY(column_list)
        | RANGE{(expr) | COLUMNS(column_list)}
        | LIST{(expr) | COLUMNS(column_list)} }
    [PARTITIONS num]
    [SUBPARTITION BY
        { [LINEAR] HASH(expr)
        | [LINEAR] KEY(column_list) }
      [SUBPARTITIONS num]
    ]
    [(partition_definition [, partition_definition] ...)]

partition_definition:
    PARTITION partition_name
        [VALUES
            {LESS THAN {(expr | value_list) | MAXVALUE}
            |
            IN (value_list)}]
        [[STORAGE] ENGINE [=] engine_name]
        [COMMENT [=] 'comment_text' ]
        [DATA DIRECTORY [=] 'data_dir']
        [INDEX DIRECTORY [=] 'index_dir']
        [MAX_ROWS [=] max_number_of_rows]
        [MIN_ROWS [=] min_number_of_rows]
        [(subpartition_definition [, subpartition_definition] ...)]

subpartition_definition:
    SUBPARTITION logical_name
        [[STORAGE] ENGINE [=] engine_name]
        [COMMENT [=] 'comment_text' ]
        [DATA DIRECTORY [=] 'data_dir']
        [INDEX DIRECTORY [=] 'index_dir']
        [MAX_ROWS [=] max_number_of_rows]
        [MIN_ROWS [=] min_number_of_rows]

select_statement:
    [IGNORE | REPLACE] [AS] SELECT ...   (Some legal select statement)

CREATE TABLE creates a table with the given name. You must have the
CREATE privilege for the table.

Rules for permissible table names are given in
http://dev.mysql.com/doc/refman/5.5/en/identifiers.html. By default,
the table is created in the default database, using the InnoDB storage
engine. An error occurs if the table exists, if there is no default
database, or if the database does not exist.

URL: http://dev.mysql.com/doc/refman/5.5/en/create-table.html


mysql>

 

 

至于上面一层的命令,我们还可以查看mysql支持的数据类型,

 

mysql> ? Data Types;
You asked for help about help category: "Data Types"
For more information, type 'help <item>', where <item> is one of the following
topics:
   AUTO_INCREMENT
   BIGINT
   BINARY
   BIT
   BLOB
   BLOB DATA TYPE
   BOOLEAN
   CHAR
   CHAR BYTE
   DATE
   DATETIME
   DEC
   DECIMAL
   DOUBLE
   DOUBLE PRECISION
   ENUM
   FLOAT
   INT
   INTEGER
   LONGBLOB
   LONGTEXT
   MEDIUMBLOB
   MEDIUMINT
   MEDIUMTEXT
   SET DATA TYPE
   SMALLINT
   TEXT
   TIME
   TIMESTAMP
   TINYBLOB
   TINYINT
   TINYTEXT
   VARBINARY
   VARCHAR
   YEAR DATA TYPE

mysql> ? Utility;
You asked for help about help category: "Utility"
For more information, type 'help <item>', where <item> is one of the following
topics:
   DESCRIBE
   EXPLAIN
   HELP STATEMENT
   USE

 

通过帮助文档还是很方便查到mysql的所有名称,已经每个命令的使用方法和语法。

 

可以查看mysql内置函数列表,以及每个函数的功能和使用方法:

mysql> ? Functions;
You asked for help about help category: "Functions"
For more information, type 'help <item>', where <item> is one of the following
topics:
   PROCEDURE ANALYSE
categories:
   Bit Functions
   Comparison operators
   Control flow functions
   Date and Time Functions
   Encryption Functions
   Information Functions
   Logical operators
   Miscellaneous Functions
   Numeric Functions
   String Functions

mysql> ? String Functions;
You asked for help about help category: "String Functions"
For more information, type 'help <item>', where <item> is one of the following
topics:
   ASCII
   BIN
   BINARY OPERATOR
   BIT_LENGTH
   CAST
   CHAR FUNCTION
   CHARACTER_LENGTH
   CHAR_LENGTH
   CONCAT
   CONCAT_WS
   CONVERT
   ELT
   EXPORT_SET
   EXTRACTVALUE
   FIELD
   FIND_IN_SET
   FORMAT
   HEX
   INSERT FUNCTION
   INSTR
   LCASE
   LEFT
   LENGTH
   LIKE
   LOAD_FILE
   LOCATE
   LOWER
   LPAD
   LTRIM
   MAKE_SET
   MATCH AGAINST
   MID
   NOT LIKE
   NOT REGEXP
   OCTET_LENGTH
   ORD
   POSITION
   QUOTE
   REGEXP
   REPEAT FUNCTION
   REPLACE FUNCTION
   REVERSE
   RIGHT
   RPAD
   RTRIM
   SOUNDEX
   SOUNDS LIKE
   SPACE
   STRCMP
   SUBSTR
   SUBSTRING
   SUBSTRING_INDEX
   TRIM
   UCASE
   UNHEX
   UPDATEXML
   UPPER

mysql> ? QUOTE;
Name: 'QUOTE'
Description:
Syntax:
QUOTE(str)

Quotes a string to produce a result that can be used as a properly
escaped data value in an SQL statement. The string is returned enclosed
by single quotation marks and with each instance of backslash ("\"),
single quote ("'"), ASCII NUL, and Control+Z preceded by a backslash.
If the argument is NULL, the return value is the word "NULL" without
enclosing single quotation marks.

URL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html

Examples:
mysql> SELECT QUOTE('Don\'t!')
        -> 'Don\'t!'
mysql> SELECT QUOTE(NULL)
        -> NULL

mysql>
 

 

mysql的插件信息和事务之类的其他信息

 

mysql> ? Plugins;
Name: 'SHOW PLUGINS'
Description:
Syntax:
SHOW PLUGINS

SHOW PLUGINS displays information about server plugins. Plugin
information is also available in the INFORMATION_SCHEMA.PLUGINS table.
See http://dev.mysql.com/doc/refman/5.5/en/plugins-table.html.

Example of SHOW PLUGINS output:

mysql> SHOW PLUGINS\G
*************************** 1. row ***************************
   Name: binlog
 Status: ACTIVE
   Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 2. row ***************************
   Name: CSV
 Status: ACTIVE
   Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 3. row ***************************
   Name: MEMORY
 Status: ACTIVE
   Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 4. row ***************************
   Name: MyISAM
 Status: ACTIVE
   Type: STORAGE ENGINE
Library: NULL
License: GPL
...

URL: http://dev.mysql.com/doc/refman/5.5/en/show-plugins.html


mysql> ? Transations;

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

mysql> ? Transactions;
You asked for help about help category: "Transactions"
For more information, type 'help <item>', where <item> is one of the following
topics:
   ISOLATION
   LOCK
   SAVEPOINT
   START TRANSACTION

mysql>

 

通过帮助文档可以查询到mysql的所有命令及每个命令的功能,语法。

0
5
分享到:
评论

相关推荐

    MySQL帮助文档 大全

    这份"MySQL帮助文档大全"包含了一系列的参考手册,旨在为用户提供全面的MySQL知识和技术支持。 1. **MySQL 5.1参考手册**: MySQL 5.1是MySQL的一个重要版本,它引入了许多增强功能和改进。此手册详细介绍了如何...

    mysql帮助文档帮助学习mysql数据库

    MySQL帮助文档是学习和掌握MySQL数据库的关键资源,它包含了从基础概念到高级特性的全面教程和参考指南。 在“MySQL5.1_DOC_CN.chm”中,你可以找到关于MySQL 5.1版本的详细信息。这个版本引入了许多重要的功能和...

    MySQL的最详细帮助文件MySQL的最详细帮助文件

    MySQL的最详细帮助文件MySQL的最详细帮助文件MySQL的最详细帮助文件MySQL的最详细帮助文件MySQL的最详细帮助文件MySQL的最详细帮助文件MySQL的最详细帮助文件MySQL的最详细帮助文件MySQL的最详细帮助文件MySQL的最...

    MySQL帮助文档,中文版

    这份"MySQL帮助文档,中文版"提供了丰富的信息,对于学习和掌握MySQL的基础知识以及高级特性至关重要。 首先,我们来看看【MySQL 5.1参考手册.chm】。这个文档涵盖了MySQL 5.1版本的所有细节,5.1是MySQL的一个稳定...

    MySQL数据库使用帮助文档

    这份"MySQL数据库使用帮助文档"是开发者在处理与数据库相关的Web应用程序时的重要参考资料。它包含了大量的信息,旨在帮助用户更好地理解和操作MySQL。 文档中可能涵盖以下几个主要知识点: 1. **MySQL安装与配置*...

    MYSQL帮助文档(API)

    总的来说,这个“MYSQL帮助文档(API)”对于开发人员来说是一份宝贵的参考资料,无论你是初学者还是经验丰富的开发者,都可以从中获取到关于MySQL数据库操作和API使用的详尽信息。不过,由于不是最新版本,建议在...

    MYSQL5.1 CHM版中文帮助文档.zip_MYSQL_msql 5.1 API文档

    这个"MYSQL5.1 CHM版中文帮助文档.zip"压缩包包含了MySQL 5.1的中文帮助文档,对于开发者来说,是一个非常宝贵的参考资料。CHM(Compiled HTML Help)格式是一种微软系统下的帮助文件格式,它可以将大量HTML页面整合...

    MySql帮助文档网页版

    网页版MySQL帮助文档会详细解释这些概念,并提供示例和最佳实践,帮助开发者和管理员更好地理解和使用MySQL。无论是初学者还是经验丰富的专业人士,都能从中受益,解决遇到的问题,提升对MySQL的理解和应用能力。

    MySQL帮助文档 .chm

    本压缩包中的四个`.chm`文件——`mysql.chm`、`mysql5.1.chm`、`MYSQL帮助.chm`和`MySQL_5.1_zh.chm`,很显然是MySQL的中文帮助文档,适合初学者了解和学习MySQL的各种概念、语法和操作。 1. **MySQL基础知识**: ...

    Mysql帮助文档

    综上所述,Mysql帮助文档提供了一个关于MySQL 5.5版本及MySQL Cluster NDB 7.2版本的全面参考,涵盖了安装、配置、性能优化、安全措施以及如何使用各种功能和工具等多个方面,是学习和使用MySQL的重要参考资料。

    MySQL使用手册、帮助文档

    这份"MySQL使用手册、帮助文档"提供了全面的指南,帮助用户深入理解和有效地使用MySQL。 一、MySQL概述 MySQL是一个开源、免费的SQL数据库,由Oracle公司维护。它支持多种操作系统,包括Windows、Linux、macOS等,...

    MySql命令帮助文档

    ### MySQL命令帮助文档知识点解析 #### 一、启动MySQL服务器 **知识点1:启动方法** - **使用winmysqladmin工具**:这是一种图形化的工具,可以在系统启动时自动运行MySQL服务,便于管理和监控MySQL服务器的状态...

    mysql中文帮助文档

    总之,这份MySQL 5.1的中文帮助文档是学习和使用MySQL的宝贵资源,无论你是初学者还是经验丰富的数据库管理员,都能从中找到你需要的信息。通过深入学习和实践,你可以更好地掌握MySQL的各个方面,提升你的数据库...

    mysql chm 帮助文档 中文

    这个“mysql5.1 chm 帮助文档 中文”压缩包包含了MySQL 5.1版本的官方中文帮助文档,是学习和理解MySQL 5.1特性和功能的重要资源。 **MySQL 5.1概述** MySQL 5.1是MySQL的一个重要版本,它在5.0的基础上增加了很多...

    MySQL 使用帮助文档中文版

    这个“MySQL 使用帮助文档中文版”是专为中国用户设计的,旨在提供易于理解的指南,帮助用户更好地理解和操作MySQL。 1. **基础概念**:MySQL的基础包括数据表、字段、记录和索引等基本元素。数据表是存储数据的...

    MySql5.1中文帮助文档.zip

    "MySql5.1中文帮助文档.chm"文件是一个Windows帮助文件,通常包含详细的索引、搜索功能以及分章节的内容,方便用户快速查找和学习MySQL 5.1的相关知识。在文档中,你可以找到关于以下主题的信息: - 数据类型和字段...

    mysql帮助文档

    本“mysql帮助文档”是针对MySQL数据库系统的一份详尽参考资料,特别适合数据库管理员、开发人员以及需要理解和使用MySQL API的用户。 在“MySQL 5.1中文参考手册(CHM)”中,你可以找到关于MySQL 5.1版本的所有关键...

    MySql官方中文帮助文档

    `mysql.chm` 文件是MySQL的离线帮助文档,通常是以CHM(Compiled HTML Help)格式编译的,这种格式可以快速检索和查看内容,方便用户在没有网络的情况下查阅。CHM文件包含了大量的MySQL技术细节,包括但不限于以下...

    mysql8.0帮助文档

    本帮助文档详细介绍了MySQL 8.0的各种特性,旨在帮助用户更好地理解和使用这个强大的数据库系统。 1. **系统变量**:MySQL 8.0中的系统变量是配置数据库行为的关键工具。与之前的版本相比,有一些新的变量引入,如`...

Global site tag (gtag.js) - Google Analytics