PDF (US Ltr)
- 43.3Mb
PDF (A4)
- 43.4Mb
Man Pages (TGZ)
- 297.2Kb
Man Pages (Zip)
- 402.4Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/bit-value-literals.html
In numeric contexts, MySQL treats a bit literal like an integer. A leading 0b is case-sensitive and cannot be written as 0B. To ensure numeric treatment of a bit literal, use it in numeric context. For example, a bit literal assigned to a ...
https://dev.mysql.com/doc/refman/8.0/en/change-master-to.html
interval must be a nonnegative integer in the range from 0 to 231−1. ] CHANGE MASTER TO changes the parameters that the replica server uses for connecting to the source and for reading data from the source. It also updates the contents of the ...
https://dev.mysql.com/doc/refman/8.0/en/change-replication-source-to.html
interval must be a nonnegative integer in the range from 0 to 231−1. ] CHANGE REPLICATION SOURCE TO changes the parameters that the replica server uses for connecting to the source and reading data from the source. It also updates the contents of ...
https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-sets.html
NOTE 11: The Unicode scalar value of a character is its code point treated as an unsigned integer.” If the character set is ucs2, comparison is byte-by-byte, but ucs2 strings should not contain surrogates, anyway. This section describes the ...
https://dev.mysql.com/doc/refman/8.0/en/compressed-format.html
If values in an integer column have a small range, the column is stored using the smallest possible type. Compressed storage format is a read-only format that is generated with the myisampack tool. Compressed tables have the following ...
https://dev.mysql.com/doc/refman/8.0/en/connecting-using-uri-or-key-value-pairs.html
connect-timeout: An integer value used to configure the number of seconds that clients, such as MySQL Shell, wait until they stop trying to connect to an unresponsive MySQL server. This section describes use of URI-like connection strings or ...
https://dev.mysql.com/doc/refman/8.0/en/connection-compression-control.html
Configuration parameters that enable specifying the zstd compression level take an integer value from 1 to 22, with larger values indicating increasing levels of compression. Connections to the server can use compression on the traffic between ...
https://dev.mysql.com/doc/refman/8.0/en/connection-options.html
--zstd-compression-level=level Command-Line Format --zstd-compression-level=# Introduced 8.0.18 Type Integer The compression level to use for connections to the server that use the zstd compression algorithm. This section describes options ...
https://dev.mysql.com/doc/refman/8.0/en/create-event.html
CREATE [DEFINER = user] EVENT [IF NOT EXISTS] event_name ON SCHEDULE schedule [ON COMPLETION [NOT] PRESERVE] [ENABLE | DISABLE | DISABLE ON SLAVE] [COMMENT 'string'] DO event_body; schedule: { AT timestamp [+ INTERVAL interval] ... The event does ...
https://dev.mysql.com/doc/refman/8.0/en/create-function-loadable.html
CREATE [AGGREGATE] FUNCTION [IF NOT EXISTS] function_name RETURNS {STRING|INTEGER|REAL|DECIMAL} SONAME shared_library_name This statement loads the loadable function named function_name. (CREATE FUNCTION is also used to created stored functions; ...