MySQL Forums
Forum List  »  Newbie

Re: alter table move column syntax error
Posted by: Muhammad Habibullah
Date: June 28, 2014 06:03PM

The column order in mysql is not very important in most of the cases, since the SELECT statement can create another column order, one specifically for the application being developed (but not the "SELECT *" statement).

But in cases where order is important, this command will change the position of "column_two" after "column_one".

Code:
mysql> ALTER TABLE table_name MODIFY column_two INT(11) UNSIGNED AFTER column_one;

▁ ▂ ▄ ▅ ▆ ▇ █ MY BLOG on Passive Income http://how-2-earn.tk █ ▇ ▆ ▅ ▄ ▂ ▁

Options: ReplyQuote


Subject
Written By
Posted
Re: alter table move column syntax error
June 28, 2014 06:03PM


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.