Search Results
                    
                    
            https://dev.mysql.com/doc/internals/en/frm-file-format.html
                                 Regardless of the storage engine you choose, every MySQL table you create is represented on disk by a .frm file that describes the table's format (that is, the table definition). The .frm format is the same on all platforms, but in the description ...The file bears the same name as the table, with an .frm ...| (many 0s) | 00001000 00 00 00 00 02 00 ff 00 00 00 00 00 00 00 00 00 ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/replication-solutions-diffengines.html
                                Configuring different engines on the source and replica depends on how you set up the initial replication process: If you used mysqldump to create the database snapshot on your source, you could edit the dump file text to change the engine type used ... It does not matter for the replication process whether the original table on the source and the replicated table on the replica use different storage engine ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/partitioning-list.html
                                For more detailed syntactical information, see Section 15.1.20, “CREATE TABLE Statement”. As with the other partitioning examples, we assume that the default_storage_engine is InnoDB.) Suppose that there are 20 video stores distributed among 4 ... List partitioning in MySQL is similar to range partitioning in many ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/where-optimization.html
                                If there is an ORDER BY clause and a different GROUP BY clause, or if the ORDER BY or GROUP BY contains columns from tables other than the first table in the join queue, a temporary table is created. COUNT(*) on a single table without a WHERE is ...
                                            
                https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-model-sharing.html
                                Run the SHOW CREATE TABLE command to confirm the table was created with the recommended parameters for importing.  This topic describes how to grant other users access to a model you create. Share Your Models To share a model you created, you can ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/data-type-defaults.html
                                Examples: CREATE TABLE t1 ( i INT DEFAULT -1, c VARCHAR(10) DEFAULT '', price DOUBLE(16,2) DEFAULT 0.00 ); SERIAL DEFAULT VALUE is a special case. Suppose that a table t is defined as follows: CREATE TABLE t (i INT NOT NULL); In this case, i has no ...An expression default value for one column can refer to other table columns, with the exception that references to generated columns or columns with expression default values must be to columns that occur earlier in the table ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-event.html
                                This is an example of a minimal CREATE EVENT statement: CREATE EVENT myevent ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR DO UPDATE myschema.mytable SET mycol = mycol + 1; The previous statement creates an event named myevent. This event ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/replace.html
                                For information about generated columns, see Section 15.1.20.8, “CREATE TABLE and Generated Columns”. | TABLE table_name} value: {expr | DEFAULT} value_list: value [, value] ... REPLACE works exactly like INSERT, except that if an old row in the ... REPLACE [LOW_PRIORITY | DELAYED] [INTO] tbl_name [PARTITION (partition_name [, partition_name] ...)] [(col_name [, col_name] ...)] { {VALUES | VALUE} (value_list) [, (value_list)] ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-tables-physical-schemata.html
                                Copy SQL to Clipboard: Copies a CREATE TABLE statement for the table.  Double-clicking the Add table icon in the Physical Schemas section of the Model Overview tab adds a table with the default name of table1. If a table with this name already ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/information-schema-statistics-table.html
                                However, prefix lengths for index specifications in CREATE TABLE, ALTER TABLE, and CREATE INDEX statements are interpreted as number of characters for nonbinary string types (CHAR, VARCHAR, TEXT) and number of bytes for binary string types (BINARY, ...The information_schema_stats_expiry system variable defines the period of time before cached table statistics ...