MySQL Forums
Forum List  »  Docs

Missing syntax ?
Posted by: Januar Quaasalmy
Date: September 08, 2008 05:56AM

mysql manual ref 6.0 pdf A4 version, not check other version.

syntax part of CREATE TABLE (column_definition) missing optional COLUMN_FORMAT ... and STORAGE ... .

is it really missing syntax ?
or is it really syntax change for mysql 6.0 ?

like in mysql 5.1 manual
column_definition:
data_type [NOT NULL | NULL] [DEFAULT default_value]
[AUTO_INCREMENT] [UNIQUE [KEY] | [PRIMARY] KEY]
[COMMENT 'string'] [reference_definition]
[COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]
[STORAGE {DISK|MEMORY}]

while int mysql 6.0 manual
column_definition:
data_type [NOT NULL | NULL] [DEFAULT default_value]
[AUTO_INCREMENT] [UNIQUE [KEY] | [PRIMARY] KEY]
[COMMENT 'string'] [reference_definition]

without COLUMN_FORMAT... and STORAGE...



Edited 1 time(s). Last edit at 09/08/2008 06:40AM by Januar Quaasalmy.

Options: ReplyQuote


Subject
Views
Written By
Posted
Missing syntax ?
5758
September 08, 2008 05:56AM
3337
February 18, 2009 12:13AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.