MySQL "alter table" syntax got problemI am trying to add a column into an existing table using
ALTER TABLE table_name ADD COLUMN column_name column_definition FIRST another_column
the FIRST keyword got syntax error.
btw, i am using MySQL 4
Could anyone help to solve this problem?
(more...)
alter table my_table add column my_colunm varchar(eg) default "default";