PDF (US Ltr)
        - 35.1Mb
                                PDF (A4)
        - 35.2Mb
                                Man Pages (TGZ)
        - 256.4Kb
                                Man Pages (Zip)
        - 361.2Kb
                                Info (Gzip)
        - 3.4Mb
                                Info (Zip)
        - 3.4Mb
                    
            Search Results
                        
                    
                    
            https://dev.mysql.com/doc/refman/5.7/en/server-status-variables.html
                                If the group is operating in multi-primary mode, shows an empty string.  The MySQL server maintains many status variables that provide information about its operation. You can view these variables and their values by using the SHOW [GLOBAL | ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html
                                As a string indicating an offset from UTC of the form [H]H:MM, prefixed with a + or -, such as '+10:00', '-6:00', or '+05:30'.  This section describes the time zone settings maintained by MySQL, how to load the system tables required for named time ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/replication-features-memory.html
                                To replicate this effect to replicas, the first time that the source uses a given MEMORY table after startup, it logs an event that notifies replicas that the table must be emptied by writing a DELETE or (from MySQL 5.7.32) TRUNCATE TABLE statement ... When a replication source server shuts down and restarts, its MEMORY tables become ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/keyring-functions-general-purpose.html
                                Return value: Returns the key value as a string for success, NULL if the key does not exist, or NULL and an error for failure. Return value: Returns the key type as a string for success, NULL if the key does not exist, or NULL and an error for ...If ... MySQL Server supports a keyring service that enables internal server components and plugins to store sensitive information securely for later ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/innodb-memcached-porting-mysql.html
                                If there is a short numeric primary key column in an InnoDB table, use it as the unique lookup key for memcached by converting the integer to a string value. In any query that performs arithmetic using column values, use the CAST() function to ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html
                                If the arguments are not suitable to permit a function to perform the requested operation, it returns NULL or 0 as appropriate. This occurs, for example, if a function does not support a specified algorithm, a key length is too short or long, or a ... MySQL Enterprise Encryption functions have these general characteristics: For arguments of the wrong type or an incorrect number of arguments, each function returns an ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/mysql-nutshell.html
                                JSON values are not stored as strings, instead using an internal binary format that permits quick read access to document elements. This function also works with a string that can be parsed as a JSON value. This function also accepts a valid string ... This section summarizes what has been added to, deprecated in, and removed from MySQL ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/show-index.html
                                row *************************** Table: city Non_unique: 0 Key_name: PRIMARY Seq_in_index: 1 Column_name: ID Collation: A Cardinality: 4188 Sub_part: NULL Packed: NULL Null: Index_type: BTREE Comment: Index_comment: *************************** 2. row ... SHOW {INDEX | INDEXES | KEYS} {FROM | IN} tbl_name [{FROM | IN} db_name] [WHERE expr] SHOW INDEX returns table index ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-what-is-new-7-6.html
                                When the primary key is extended with an additional column or columns, any columns added must be defined as NOT NULL, and no values in any such columns may be changed during the time that the backup is being taken. --remap-column takes as its ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/column-count-limit.html
                                mysql> CREATE TABLE t2 (c1 VARCHAR(65533) NOT NULL) ENGINE = InnoDB CHARACTER SET latin1; Query OK, 0 rows affected (0.01 sec) For MyISAM tables, NULL columns require additional space in the row to record whether their values are NULL. Each NULL ...