Lodius2000 Posted January 19, 2009 Share Posted January 19, 2009 is there a way I can quickly change the name of a few columns of a mysql table? I made the table a long time ago, and dont really like my naming convention for some of the fields thanks Quote Link to comment https://forums.phpfreaks.com/topic/141388-solved-change-column-names/ Share on other sites More sharing options...
btherl Posted January 19, 2009 Share Posted January 19, 2009 You can use the ALTER TABLE command. Or an admin interface like mysqladmin should be able to do this also. Quote Link to comment https://forums.phpfreaks.com/topic/141388-solved-change-column-names/#findComment-740143 Share on other sites More sharing options...
Lodius2000 Posted January 19, 2009 Author Share Posted January 19, 2009 so something like SELECT tablename ALTER TABLE CHANGE old-col-name new-col-name would that be it? Quote Link to comment https://forums.phpfreaks.com/topic/141388-solved-change-column-names/#findComment-740164 Share on other sites More sharing options...
btherl Posted January 19, 2009 Share Posted January 19, 2009 You don't need the select. alter table is a command on its own. Try this: ALTER TABLE t CHANGE COLUMN old_name new_name INTEGER Make sure you give the same type as the column was before. The docs say this: You can rename a column using a CHANGE old_col_name new_col_name column_definition clause. To do so, specify the old and new column names and the definition that the column currently has. For example, to rename an INTEGER column from a to b, you can do this: ALTER TABLE t1 CHANGE a b INTEGER; Quote Link to comment https://forums.phpfreaks.com/topic/141388-solved-change-column-names/#findComment-740166 Share on other sites More sharing options...
Lodius2000 Posted January 19, 2009 Author Share Posted January 19, 2009 ahh thanks, didnt know alter table allowed a name after it thanks Quote Link to comment https://forums.phpfreaks.com/topic/141388-solved-change-column-names/#findComment-740173 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.