I want to move column OtherSupport
below Amount2
... is there an easy way to do this?
views:
70answers:
2
+2
A:
ALTER TABLE myTable MODIFY OtherSupport VARCHAR(50) AFTER Amount2;
MindStalker
2010-04-29 18:11:44
+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
2010-04-29 18:13:30