Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/get-diagnostics.html
                                 GET [CURRENT | STACKED] DIAGNOSTICS { statement_information_item [, statement_information_item] ... (You can also use SHOW WARNINGS or SHOW ERRORS to see conditions or errors.) No special privileges are required to execute GET DIAGNOSTICS. The ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/group-by-handling.html
                                 SQL-92 and earlier does not permit queries for which the select list, HAVING condition, or ORDER BY list refer to nonaggregated columns that are not named in the GROUP BY clause. SQL:1999 and later permits such nonaggregates per optional feature ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/if.html
                                [ELSE statement_list] END IF The IF statement for stored programs implements a basic conditional construct. Note There is also an IF() function, which differs from the IF statement described here. The IF statement can have THEN, ELSE, and ELSEIF ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-and-mysql-replication.html
                                 It is possible to use replication in a way where the storage engine on the replica is not the same as the storage engine on the source. For example, you can replicate modifications to an InnoDB table on the source to a MyISAM table on the replica. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/json-search-functions.html
                                 The functions in this section perform search or comparison operations on JSON values to extract data from them, report whether data exists at a location within them, or report the path to data within them. JSON_CONTAINS(target, candidate[, path]) ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/numeric-type-attributes.html
                                 MySQL supports an extension for optionally specifying the display width of integer data types in parentheses following the base keyword for the type. For example, INT(4) specifies an INT with a display width of four digits. This optional display ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/optimizer-statistics.html
                                 The column_statistics data dictionary table stores histogram statistics about column values, for use by the optimizer in constructing query execution plans. The column_statistics table has these characteristics: The table contains statistics for ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/partitioning-linear-hash.html
                                 MySQL also supports linear hashing, which differs from regular hashing in that linear hashing utilizes a linear powers-of-two algorithm whereas regular hashing employs the modulus of the hashing function's value. We call this value V; it can be ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/partitioning-subpartitions.html
                                 Subpartitioning—also known as composite partitioning—is the further division of each partition in a partitioned table. Consider the following CREATE TABLE statement: CREATE TABLE ts (id INT, purchased DATE) PARTITION BY RANGE( YEAR(purchased) ) ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/rename-table.html
                                 RENAME TABLE tbl_name TO new_tbl_name [, tbl_name2 TO new_tbl_name2] ... You must have ALTER and DROP privileges for the original table, and CREATE and INSERT privileges for the new table. You can rename tables locked with a LOCK TABLES statement, ...