Search Results
                    
                    
            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-search.html
                                 MATCH (col1,col2,...) AGAINST (expr [search_modifier]) search_modifier: { IN NATURAL LANGUAGE MODE | IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION | IN BOOLEAN MODE | WITH QUERY EXPANSION } MySQL has support for full-text indexing and searching: A ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/function-optimization.html
                                A function is nondeterministic if, given fixed values for its arguments, it can return different results for different invocations. If a function is tagged nondeterministic, a reference to it in a WHERE clause is evaluated for every row (when ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/group-by-optimization.html
                                 The most general way to satisfy a GROUP BY clause is to scan the whole table and create a new temporary table where all rows from each group are consecutive, and then use this temporary table to discover groups and apply aggregate functions (if ...
                                            
                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 ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/information-schema-innodb-ft-index-table-table.html
                                 The INNODB_FT_INDEX_TABLE table provides information about the inverted index used to process text searches against the FULLTEXT index of an InnoDB table. Before querying it, set the value of the innodb_ft_aux_table system variable to the name ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/information-schema-innodb-virtual-table.html
                                 The INNODB_VIRTUAL table provides metadata about InnoDB virtual generated columns and columns upon which virtual generated columns are based. A row appears in the INNODB_VIRTUAL table for each column upon which a virtual generated column is based.