Search Results
                    
                    
            https://dev.mysql.com/doc/ndbapi/en/ndb-table.html
                                It is possible using the NDB API to create tables independently of the MySQL server. However, it is usually not advisable to do so, since tables created in this fashion cannot be seen by the MySQL server. As with other database objects, Table object ... This section provides information about the Table class, which models a database table in the NDB ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-table-ndb-comment-options.html
                                NDB_COLUMN Options In NDB Cluster, a column comment in a CREATE TABLE or ALTER TABLE statement can also be used to specify an NDB_COLUMN option. NDB_TABLE Options For an NDB Cluster table, the table comment in a CREATE TABLE or ALTER TABLE statement ... NDB_COLUMN Options NDB_TABLE Options It is possible to set a number of options specific to NDB Cluster in the table comment or column comments of an NDB ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/alter-table.html
                                For example, you can add or delete columns, create or destroy indexes, change the type of existing columns, or rename columns or the table itself. To use ALTER TABLE, you need ALTER, CREATE, and INSERT privileges for the table. Renaming a table ...| ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-table-gipks.html
                                 MySQL 8.4 supports generated invisible primary keys for any InnoDB table that is created without an explicit primary key. This setting has no effect on tables created using any other storage engine than InnoDB. row *************************** ...By ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-example-ddl.html
                                The following examples show how to create the tables of the Employee Sample Database. You might typically work with tables that are already set up, rather than creating them within your own application. The exception is temporary tables, which can ...In a MySQL server, tables are very long-lived objects, and are often accessed by multiple applications written in different ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-example-ddl.html
                                The following examples show how to create the tables of the Employee Sample Database. You might typically work with tables that are already set up, rather than creating them within your own application. The exception is temporary tables, which can ...In a MySQL server, tables are very long-lived objects, and are often accessed by multiple applications written in different ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-table-check-constraints.html
                                 CREATE TABLE permits the core features of table and column CHECK constraints, for all storage engines. CREATE TABLE permits the following CHECK constraint syntax, for both table constraints and column constraints: [CONSTRAINT [symbol]] CHECK (expr) ...If omitted, MySQL generates a name from the table name, a literal _chk_, and an ordinal number (1, 2, 3, ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-tables.html
                                You can create the employee table that matches this interface, using the following CREATE TABLE statement, in a MySQL client application such as mysql.  ClusterJ's main purpose is to read, write, and update row data in an existing database, rather ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-tables.html
                                 ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-table-secondary-indexes.html
                                A secondary index may be created on one or more virtual columns or on a combination of virtual columns and regular columns or stored generated columns. When a secondary index is created on a virtual generated column, generated column values are ...A ...