tags:

views:

70

answers:

2

I want to move column OtherSupport below Amount2 ... is there an easy way to do this?

MySQL Query Editor

+2  A: 

ALTER TABLE myTable MODIFY OtherSupport VARCHAR(50) AFTER Amount2;

MindStalker
+2  A: 

You're not the first one to ask. Here's the feature request.

Either do it using SQL or use MySQL Workbench.

Mark Byers