Move a column after some other column
mysql> ALTER TABLE mytable MODIFY COLUMN mycolumn INT AFTER someothercolumn;
Move a column to the first position
mysql> ALTER TABLE mytable MODIFY COLUMN mycolumn INT FIRST;
Thanks to Masao Kitamura
Move a column after some other column
mysql> ALTER TABLE mytable MODIFY COLUMN mycolumn INT AFTER someothercolumn;
Move a column to the first position
mysql> ALTER TABLE mytable MODIFY COLUMN mycolumn INT FIRST;
C# MIDI Toolkit midi-dot-net Discussion about programming C# MIDI Create great MIDI 2.0 apps using Windows MIDI Services and C# MIDI ...
No comments:
Post a Comment