https://dev.mysql.com/replication-sbr-rbr.html
If the statement changes many rows, row-based replication may write significantly more data to the binary log; this is true even for statements that are rolled back. For most users, the mixed replication format should provide the best combination of ...
https://dev.mysql.com/replication-solutions-backups-read-only.html
Note The instructions in this section place the server to be backed up in a state that is safe for backup methods that get the data from the server, such as mysqldump (see Section 4.5.4, “mysqldump — A Database Backup Program”). You should not ...
https://dev.mysql.com/spatial-relation-functions-mbr.html
The return values 1 and 0 indicate true and false, respectively. If any argument is geometrically invalid, either the result is true or false (it is undefined which), or an error occurs. MySQL provides several MySQL-specific functions that test the ...
https://dev.mysql.com/spatial-relation-functions-object-shapes.html
The return values 1 and 0 indicate true and false, respectively, except for ST_Distance(), which returns distance values. If any geometry argument is geometrically invalid, either the result is true or false (it is undefined which), or an error ...
https://dev.mysql.com/subquery-optimization-with-exists.html
That is, the “pushdown” strategy works as long as both of these conditions are true: outer_expr and inner_expr cannot be NULL. AND trigcond(oe_N=ie_N) ) Each trigcond(X) is a special function that evaluates to the following values: X when the ...
https://dev.mysql.com/sys-ps-setup-show-disabled.html
Displays all currently disabled Performance Schema configuration. in_show_instruments BOOLEAN: Whether to display disabled instruments. This might be a long list. in_show_threads BOOLEAN: Whether to display disabled threads. mysql> CALL ...
https://dev.mysql.com/sys-ps-trace-statement-digest.html
Traces all Performance Schema instrumentation for a specific statement digest. If you find a statement of interest within the Performance Schema events_statements_summary_by_digest table, specify its DIGEST column MD5 value to this procedure and ...
https://dev.mysql.com/account-names.html
MySQL account names consist of a user name and a host name. This enables creation of accounts for users with the same name who can connect from different hosts. This section describes how to write account names, including special values and ...
https://dev.mysql.com/alter-event.html
This is true for both ALTER EVENT and CREATE EVENT statements. ALTER [DEFINER = user] EVENT event_name [ON SCHEDULE schedule] [ON COMPLETION [NOT] PRESERVE] [RENAME TO new_event_name] [ENABLE | DISABLE | DISABLE ON SLAVE] [COMMENT 'string'] [DO ...
https://dev.mysql.com/alter-table-partition-operations.html
Partitioning-related clauses for ALTER TABLE can be used with partitioned tables for repartitioning, to add, drop, discard, import, merge, and split partitions, and to perform partitioning maintenance. Simply using a partition_options clause with ...