Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/faqs-triggers.html
                                MySQL does have specific special behavior for some TIMESTAMP columns, as well as for columns which are defined using AUTO_INCREMENT. Where can I find the documentation for MySQL 8.4 triggers? A.5.2. Is there a way to view all triggers in a given ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/federated-create-connection.html
                                For example: CREATE TABLE federated_table ( id INT(20) NOT NULL AUTO_INCREMENT, name VARCHAR(32) NOT NULL DEFAULT '', other INT(20) NOT NULL DEFAULT '0', PRIMARY KEY (id), INDEX name (name), INDEX other_key (other) ) ENGINE=FEDERATED DEFAULT ... To ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/federated-create-server.html
                                 If you are creating a number of FEDERATED tables on the same server, or if you want to simplify the process of creating FEDERATED tables, you can use the CREATE SERVER statement to define the server connection parameters, just as you would with the ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/federated-create.html
                                 To create a FEDERATED table you should follow these steps: Create the table on the remote server. Alternatively, make a note of the table definition of an existing table, perhaps using the SHOW CREATE TABLE statement. Create the table on the local ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/fulltext-boolean.html
                                 MySQL can perform boolean full-text searches using the IN BOOLEAN MODE modifier. With this modifier, certain characters have special meaning at the beginning or end of words in the search string. In the following query, the + and - operators ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/fulltext-natural-language.html
                                 By default or with the IN NATURAL LANGUAGE MODE modifier, the MATCH() function performs a natural language search for a string against a text collection. A collection is a set of one or more columns included in a FULLTEXT index. For each row in the ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/fulltext-stopwords.html
                                 The stopword list is loaded and searched for full-text queries using the server character set and collation (the values of the character_set_server and collation_server system variables). False hits or misses might occur for stopword lookups if the ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/general-thread-states.html
                                State includes information such as number of rows, the AUTO_INCREMENT counter, and key distributions.  The following list describes thread State values that are associated with general query processing and not more specialized activities such as ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/glossary.html
                                auto-increment A property of a table column (specified by the AUTO_INCREMENT keyword) that automatically adds an ascending sequence of values in the column.  These terms are commonly used in information about the MySQL database server. Files with ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/information-schema-innodb-ft-index-cache-table.html
                                 The INNODB_FT_INDEX_CACHE table provides token information about newly inserted rows in a FULLTEXT index. Before querying it, set the value of the innodb_ft_aux_table system variable to the name (including the database name) of the table that ...