Search Results
                    
                    
            https://dev.mysql.com/doc/heatwave/en/mys-hw-rpd-ml-stats-table.html
                                 Note The Performance Schema table described here is available as of MySQL 9.0.0. Support for MySQL HeatWave GenAI routines is available as of MySQL 9.0.1-u1. The rpd_ml_stats table tracks the usage of successful MySQL HeatWave routines. The ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/aggregate-functions.html
                                 This section describes aggregate functions that operate on sets of values. They are often used with a GROUP BY clause to group values into subsets. If you use an aggregate function in a statement containing no GROUP BY clause, it is equivalent to ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/archive-storage-engine.html
                                 The ARCHIVE storage engine produces special-purpose tables that store large amounts of unindexed data in a very small footprint. To enable this storage engine if you build MySQL from source, invoke CMake with the -DWITH_ARCHIVE_STORAGE_ENGINE ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/bit-functions.html
                                 Table 14.17 Bit Functions and Operators Name Description & Bitwise AND >> Right shift << Left shift ^ Bitwise XOR BIT_COUNT() Return the number of bits that are set | Bitwise OR ~ Bitwise inversion The following list describes available bit ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-binary-collations.html
                                 This section describes how the binary collation for binary strings compares to _bin collations for nonbinary strings. Binary strings (as stored using the BINARY, VARBINARY, and BLOB data types) have a character set and collation named binary. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-conversion.html
                                 To convert a binary or nonbinary string column to use a particular character set, use ALTER TABLE. For successful conversion to occur, one of the following conditions must apply: If the column has a binary data type (BINARY, VARBINARY, BLOB), all ...
                                            
                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/encryption-functions.html
                                If you want to store these results, use a column with a VARBINARY or BLOB binary string data type. This avoids potential problems with trailing space removal or character set conversion that would change data values, such as may occur if you use a ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/flow-control-functions.html
                                The second syntax returns the result for the first condition that is true. If no comparison or condition is true, the result after ELSE is returned, or NULL if there is no ELSE part. Note The syntax of the CASE operator described here differs ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innochecksum.html
                                This tool reads an InnoDB tablespace file, calculates the checksum for each page, compares the calculated checksum to the stored checksum, and reports mismatches, which indicate damaged pages. It was originally developed to speed up verifying the ...