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/partitioning-types.html
                                MySQL's other partitioning types, however, require a partitioning expression that yields an integer value or NULL. However, you can use other date and time functions that return an integer or NULL, such as WEEKDAY(), DAYOFYEAR(), or MONTH().  This ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/performance-schema-replication-applier-status-by-worker-table.html
                                After STOP SLAVE, the THREAD_ID column becomes NULL, but the WORKER_ID value is preserved. An error number of 0 and message of the empty string mean “no error”.  If the replica is not multithreaded, this table shows the status of the applier ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html
                                If any argument is NULL or the geometry argument is an empty geometry, the return value is NULL. mysql> SET @gc = 'GeometryCollection(Point(1 1),LineString(2 2, 3 3))'; mysql> SELECT ST_AsText(ST_GeometryN(ST_GeomFromText(@gc),1)); ...GeometryN() is ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/innodb-troubleshooting-datadict.html
                                 Information about table definitions is stored both in the .frm files, and in the InnoDB data dictionary. If you move .frm files around, or if the server crashes in the middle of a data dictionary operation, these sources of information can become ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/mysql-upgrade.html
                                --debug[=debug_options], -# [debug_options] Command-Line Format --debug[=#] Type String Default Value d:t:O,/tmp/mysql_upgrade.trace Write a debugging log. --default-auth=plugin Command-Line Format --default-auth=plugin Type String A hint about ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/create-table-ndb-comment-options.html
                                For more information about how NDB stores columns of blob types, see String Type Storage Requirements. NDB_TABLE Options For an NDB Cluster table, the table comment in a CREATE TABLE or ALTER TABLE statement can also be used to specify an NDB_TABLE ... NDB_COLUMN Options NDB_TABLE Options It is possible to set a number of options specific to NDB Cluster in the table comment or column comments of an NDB ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/update.html
                                If you update a column that has been declared NOT NULL by setting to NULL, an error occurs if strict SQL mode is enabled; otherwise, the column is set to the implicit default value for the column data type and the warning count is incremented. The ... UPDATE is a DML statement that modifies rows in a ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/selecting-rows.html
                                String comparisons normally are case-insensitive, so you can specify the name as 'bowser', 'BOWSER', and so forth.  As shown in the preceding section, it is easy to retrieve an entire table. But typically you don't want to see the entire table, ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/source-configuration-options.html
                                 The CMake program provides a great deal of control over how you configure a MySQL source distribution. Typically, you do this using options on the CMake command line. For information about options supported by CMake, run either of these commands in ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html
                                Consider using an auto-increment column if there is not another stable, unique, non-null, numeric column to use. You can designate the former primary key columns as UNIQUE NOT NULL to enforce the same constraints as the PRIMARY KEY clause, that is, ... If you have MyISAM tables that you want to convert to InnoDB for better reliability and scalability, review the following guidelines and tips before ...