Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/cast-functions.html
                                 Table 14.15 Cast Functions and Operators Name Description Deprecated BINARY Cast a string to a binary string Yes CAST() Cast a value as a certain type CONVERT() Cast a value as a certain type Cast functions and operators enable conversion of values ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-repertoire.html
                                 The repertoire of a character set is the collection of characters in the set. String expressions have a repertoire attribute, which can have two values: ASCII: The expression can contain only ASCII characters; that is, characters in the Unicode ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-unicode-utf32.html
                                For example, this is illegal: INSERT INTO t (utf32_column) VALUES (0x110000); /* illegal */ .  The utf32 character set is fixed length (like ucs2 and unlike utf16). utf32 uses 32 bits for every character, unlike ucs2 (which uses 16 bits for every ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-procedure.html
                                This can be a simple statement such as SELECT or INSERT, or a compound statement written using BEGIN and END. MODIFIES SQL DATA indicates that the routine contains statements that may write data (for example, INSERT or DELETE). By default, a stored ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/cursors.html
                                Cursors have these properties: Asensitive: The server may or may not make a copy of its result table Read only: Not updatable Nonscrollable: Can be traversed only in one direction and cannot skip rows Cursor declarations must appear before handler ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/datetime.html
                                In particular, any fractional part in a value inserted into a DATETIME or TIMESTAMP column is stored rather than discarded. You can specify a time zone offset when inserting a TIMESTAMP or DATETIME value into a table. This section describes their ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/enterprise-encryption-usage.html
                                 To use MySQL Enterprise Encryption in applications, invoke the functions that are appropriate for the operations you wish to perform. MySQL Enterprise Encryption functions are provided by a MySQL component component_enterprise_encryption. For ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/explain-extended.html
                                Extended information is available for SELECT, DELETE, INSERT, REPLACE, and UPDATE statements. SHOW WARNINGS displays an empty result for other explainable statements (DELETE, INSERT, REPLACE, and UPDATE).  The EXPLAIN statement produces extra ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/explain-for-connection.html
                                 To obtain the execution plan for an explainable statement executing in a named connection, use this statement: EXPLAIN [options] FOR CONNECTION connection_id; EXPLAIN FOR CONNECTION returns the EXPLAIN information that is currently being used to ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/forcing-innodb-recovery.html
                                As a safety measure, InnoDB prevents INSERT, UPDATE, or DELETE operations when innodb_force_recovery is greater than 0.  To investigate database page corruption, you might dump your tables from the database with SELECT ... Usually, most of the data ...