Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/charset-binary-set.html
                                 The binary character set is the character set for binary strings, which are sequences of bytes. Comparison and sorting are based on numeric byte values, rather than on numeric character code values (which for multibyte characters differ from ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-national.html
                                 Standard SQL defines NCHAR or NATIONAL CHAR as a way to indicate that a CHAR column should use some predefined character set. For example, these data type declarations are equivalent: CHAR(10) CHARACTER SET utf8 NATIONAL CHARACTER(10) NCHAR(10) As ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/checking-gpg-signature-windows.html
                                 The Section 2.1.4.2, “Signature Checking Using GnuPG” section describes how to verify MySQL downloads using GPG. That guide also applies to Microsoft Windows, but another option is to use a GUI tool like Gpg4win. You may use a different tool ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/clone-plugin-replication.html
                                In addition to cloning data, a cloning operation extracts replication coordinates from the donor and transfers them to the recipient, which enables using the clone plugin for provisioning Group Replication members and replicas. Using the clone ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/commit.html
                                SET autocommit disables or enables the default autocommit mode for the current session. This means that, when not otherwise inside a transaction, each statement is atomic, as if it were surrounded by START TRANSACTION and COMMIT. You cannot use ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/connecting.html
                                 This section describes use of command-line options to specify how to establish connections to the MySQL server, for clients such as mysql or mysqldump. For information on establishing connections using URI-like connection strings or key-value ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/converting-tables-to-innodb.html
                                 If you have MyISAM tables that you want to convert to InnoDB for better reliability and scalability, review the following guidelines and tips before converting. Note Partitioned MyISAM tables created in previous versions of MySQL are not compatible ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-table-foreign-keys.html
                                 MySQL supports foreign keys, which permit cross-referencing related data across tables, and foreign key constraints, which help keep the related data consistent. A foreign key relationship involves a parent table that holds the initial column ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-user.html
                                 CREATE USER [IF NOT EXISTS] user [auth_option] [, user [auth_option]] ... [REQUIRE {NONE | tls_option [[AND] tls_option] ...}] [WITH resource_option [resource_option] ...] [password_option | lock_option] ... It enables authentication, role, ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/declare-cursor.html
                                 DECLARE cursor_name CURSOR FOR select_statement This statement declares a cursor and associates it with a SELECT statement that retrieves the rows to be traversed by the cursor. The number of columns retrieved by the SELECT statement must match the ...