Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/mysql-indexes.html
                                 Indexes are used to find rows with specific column values quickly. Without an index, MySQL must begin with the first row and then read through the entire table to find the relevant rows. If the table has an index for the columns in question, MySQL ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-indexes-create.html
                                 Indexes are used to find documents with specific field values quickly. Without an index, MySQL must begin with the first document and then read through the entire collection to find the relevant fields. If a collection is large and queries on a ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-documents-index.html
                                 Indexes are used to find documents with specific field values quickly. Without an index, MySQL must begin with the first document and then read through the entire collection to find the relevant fields. If a collection is large and queries on a ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/mysql-tips.html
                                 This section provides information about techniques for more effective use of mysql and about mysql operational behavior. Input-Line Editing Disabling Interactive History Unicode Support on Windows Displaying Query Results Vertically Using ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/mysqldumpslow.html
                                 The MySQL slow query log contains information about queries that take a long time to execute (see Section 7.4.5, “The Slow Query Log”). mysqldumpslow parses MySQL slow query log files and summarizes their contents. Normally, mysqldumpslow ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/optimize-character.html
                                 For character and string columns, follow these guidelines: Use binary collation order for fast comparison and sort operations, when you do not need language-specific collation features. You can use the BINARY operator to use binary collation within ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/other-vendor-data-types.html
                                 To facilitate the use of code written for SQL implementations from other vendors, MySQL maps data types as shown in the following table. These mappings make it easier to import table definitions from other database systems into MySQL. If you create ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/out-of-range-and-overflow.html
                                If no restrictive modes are enabled, MySQL clips the value to the appropriate endpoint of the column data type range and stores the resulting value instead. When an out-of-range value is assigned to an integer column, MySQL stores the value ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/partitioning-limitations-functions.html
                                 This section discusses limitations in MySQL Partitioning relating specifically to functions used in partitioning expressions. Each of these functions returns an integer only if it is passed an argument of an exact numeric type, such as one of the ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/performance-schema-error-log-table.html
                                 Of the logs the MySQL server maintains, one is the error log to which it writes diagnostic messages (see Section 7.4.2, “The Error Log”). Typically, the server writes diagnostics to a file on the server host or to a system log service.