Difference between revisions of "Move mysql column"
Jump to navigation
Jump to search
(changed "donors" to "tablename" so it's more clear how to apply this. i don't know mysql well, so please fix if i screwed up!) |
DanielPulido (talk | contribs) |
||
| Line 1: | Line 1: | ||
alter table tablename modify `columnname` int(10) unsigned NOT NULL AUTO_INCREMENT first; | alter table tablename modify `columnname` int(10) unsigned NOT NULL AUTO_INCREMENT first; | ||
| + | |||
| + | ==See Also== | ||
| + | [[DBMS]] | ||
Revision as of 06:37, May 5, 2010
alter table tablename modify `columnname` int(10) unsigned NOT NULL AUTO_INCREMENT first;