ALTER TABLE `Table1` ADD `Id` INT(8)  UNSIGNED ZEROFILL NOT NULL FIRST ;

解决方案 »

  1.   

    ALTER [IGNORE] TABLE tbl_name alter_spec [, alter_spec ...]alter_specification:
            ADD [COLUMN] create_definition [FIRST | AFTER column_name ]
      or    ADD [COLUMN] (create_definition, create_definition,...)
      or    ADD INDEX [index_name] (index_col_name,...)
      or    ADD PRIMARY KEY (index_col_name,...)
      or    ADD UNIQUE [index_name] (index_col_name,...)
      or    ADD FULLTEXT [index_name] (index_col_name,...)
      or ADD [CONSTRAINT symbol] FOREIGN KEY [index_name] (index_col_name,...)
                [reference_definition]
      or    ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}
      or    CHANGE [COLUMN] old_col_name create_definition
                   [FIRST | AFTER column_name]
      or    MODIFY [COLUMN] create_definition [FIRST | AFTER column_name]
      or    DROP [COLUMN] col_name
      or    DROP PRIMARY KEY
      or    DROP INDEX index_name
      or    DISABLE KEYS
      or    ENABLE KEYS
      or    RENAME [TO] new_tbl_name
      or    ORDER BY col
      or    table_options
    ★ [FIRST | AFTER column_name]  就是啦
      

  2.   

    如果你不是很熟悉SQL语言,建议多用MYSQL-FRONT。能学习到不少实用的东西。
      

  3.   

    这是最前面的:
    alter table tablename add cloumn cloumntype not null first
    默认是最后面:
    alter table tablename add cloumn cloumntype not null
    在某个字段后面:
    alter table tablename add cloumn cloumntype not null after cloumn1