| 1 to 10 of 10 |
1. MySQL :: MySQL 5.0 Reference Manual :: 12.1.5 CREATE TABLE Syntax
... RAID_TYPE RAID support has been removed as of MySQL 5.0. For information on RAID , see http://dev.mysql.com/doc/refman/4.1/en/create-table.html . UNION UNION is used when you want to access a collection of identical MyISAM tables as one. This works only
» http://dev.mysql.com/doc/refman/5.0/en/create-table.html
2. MySQL :: MySQL 5.1 Reference Manual :: 12.5.4.9 SHOW CREATE TABLE Syntax
12.5.4.9. SHOW CREATE TABLE Syntax SHOW CREATE TABLE tbl_name Shows the CREATE TABLE statement that creates the given table. This statement also works with views. mysql> SHOW CREATE TABLE t\G *************************** 1. row *************************** Table: t Create Table: CREATE TABLE t ( id INT(11) default NULL auto_increment, s char(60) default NULL, PRIMARY KEY (id) ) ENGINE=MyISAM SHOW CREATE TABLE quotes table and column names according to the value of the SQL_QUOTE_SHOW_CREATE option. See Sectio
» http://dev.mysql.com/doc/refman/5.1/en/show-create-table.html
3. MySQL :: MySQL 5.0 Reference Manual :: 12.5.4.6 SHOW CREATE TABLE Syntax
12.5.4.6. SHOW CREATE TABLE Syntax SHOW CREATE TABLE tbl_name Shows the CREATE TABLE statement that creates the given table. As of MySQL 5.0.1, this statement also works with views. mysql> SHOW CREATE TABLE t\G *************************** 1. row *************************** Table: t Create Table: CREATE TABLE t ( id INT(11) default NULL auto_increment, s char(60) default NULL, PRIMARY KEY (id) ) ENGINE=MyISAM SHOW CREATE TABLE quotes table and column names according to the value of the SQL_QUOTE_SHOW_CREATE
» http://dev.mysql.com/doc/refman/5.0/en/show-create-table.html
4. MySQL :: MySQL 6.0 Reference Manual :: 12.5.6.9 SHOW CREATE TABLE Syntax
12.5.6.9. SHOW CREATE TABLE Syntax SHOW CREATE TABLE tbl_name Shows the CREATE TABLE statement that creates the given table. It requires some privilege for the table. This statement also works with views. mysql> SHOW CREATE TABLE t\G *************************** 1. row *************************** Table: t Create Table: CREATE TABLE t ( id INT(11) default NULL auto_increment, s char(60) default NULL, PRIMARY KEY (id) ) ENGINE=MyISAM SHOW CREATE TABLE quotes table and column names according to the value of th
» http://dev.mysql.com/doc/refman/6.0/en/show-create-table.html
5. MySQL :: MySQL 6.0 Reference Manual :: 12.1.10 CREATE TABLE Syntax
... contact our sales department. RAID_TYPE RAID support has been removed as of MySQL 5.0. For information on RAID , see /4.1/en/create-table.html . ROW_FORMAT Defines how the rows should be stored. For MyISAM tables, the option value can be FIXED or DYNAMIC
» http://dev.mysql.com/doc/refman/6.0/en/create-table.html
6. MySQL :: MySQL 5.1 Reference Manual :: 12.1.10 CREATE TABLE Syntax
... RAID_TYPE RAID support has been removed as of MySQL 5.0. For information on RAID , see http://dev.mysql.com/doc/refman/4.1/en/create-table.html . ROW_FORMAT Defines how the rows should be stored. For MyISAM tables, the option value can be FIXED or DYNAMIC
» http://dev.mysql.com/doc/refman/5.1/en/create-table.html
7. MySQL :: MySQL 5.1 with Maria Reference Manual :: 12.5.4.9 SHOW CREATE TABLE Syntax
12.5.4.9. SHOW CREATE TABLE Syntax SHOW CREATE TABLE tbl_name Shows the CREATE TABLE statement that creates the given table. This statement also works with views. mysql> SHOW CREATE TABLE t\G *************************** 1. row *************************** Table: t Create Table: CREATE TABLE t ( id INT(11) default NULL auto_increment, s char(60) default NULL, PRIMARY KEY (id) ) ENGINE=MyISAM SHOW CREATE TABLE quotes table and column names according to the value of the SQL_QUOTE_SHOW_CREATE option. See Sectio
» http://dev.mysql.com/doc/refman/5.1-maria/en/show-create-table.html
8. MySQL :: MySQL 5.1 with Maria Reference Manual :: 12.1.10 CREATE TABLE Syntax
... RAID_TYPE RAID support has been removed as of MySQL 5.0. For information on RAID , see http://dev.mysql.com/doc/refman/4.1/en/create-table.html . ROW_FORMAT Defines how the rows should be stored. For MyISAM tables, the option value can be FIXED or DYNAMIC
» http://dev.mysql.com/doc/refman/5.1-maria/en/create-table.html
9. MySQL :: MySQL 3.23, 4.0, 4.1 Reference Manual :: 12.5.4.5 SHOW CREATE TABLE Syntax
12.5.4.5. SHOW CREATE TABLE Syntax SHOW CREATE TABLE tbl_name Shows the CREATE TABLE statement that creates the given table. It was added in MySQL 3.23.20. mysql> SHOW CREATE TABLE t\G *************************** 1. row *************************** Table: t Create Table: CREATE TABLE t ( id INT(11) default NULL auto_increment, s char(60) default NULL, PRIMARY KEY (id) ) ENGINE=MyISAM SHOW CREATE TABLE quotes table and column names according to the value of the SQL_QUOTE_SHOW_CREATE option. See Section 12.5.
» http://dev.mysql.com/doc/refman/4.1/en/show-create-table.html
10. MySQL :: MySQL 3.23, 4.0, 4.1 Reference Manual :: 12.1.5 CREATE TABLE Syntax
12.1.5. CREATE TABLE Syntax [ +/- ] 12.1.5.1. Silent Column Specification Changes CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name ( create_definition ,...) [ table_option ] ... Or: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [( create_definition ,...)] [ table_option ] ... select_statement Or: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name { LIKE old_tbl_name | (LIKE old_tbl_name ) } create_definition : col_name column_definition | [CONSTRAINT [ symbol ]] PRIMARY KEY [ index_type ] ( index_col_n
» http://dev.mysql.com/doc/refman/4.1/en/create-table.html
| 1 to 10 of 10 |