Bug #19753 | There is no way to insert a new column between two existing columns | ||
---|---|---|---|
Submitted: | 12 May 2006 7:25 | Modified: | 12 May 2006 8:14 |
Reporter: | Stefaan Lesage (Basic Quality Contributor) | Email Updates: | |
Status: | Won't fix | Impact on me: | |
Category: | MySQL Workbench Preview | Severity: | S2 (Serious) |
Version: | 1.0.6 Beta | OS: | Windows (Windows XP) |
Assigned to: | CPU Architecture: | Any |
[12 May 2006 7:25]
Stefaan Lesage
[12 May 2006 7:27]
Stefaan Lesage
Hm, this is rather problematic. The only solution I found for my problem is to add the field at the end of my table, save the model, then open up the model using some text editor and reposition the column where it should be.
[18 Aug 2006 17:03]
Kenny DeWitt
to add a column between two columns alter table {db_name}.{table_name} add {column_name} {column_type} after {the column_name you want the new column to be};
[18 Aug 2006 18:08]
Kenny DeWitt
next to
[27 Nov 2007 5:32]
satish moka
Hi Kenny, YOu have provided useful information to me..,thank you.