MYSQL change or rename column name OnlyJavaExceptions 09:28:00 database 0 Comments MYSQL provides an option to rename the columns even after transaction happened in that table.Simple alter script will help to solve this problem. ALTER TABLE tableName CHANGE `oldcolumnname` `newcolumnname` datatype(length); MySQL rename or change column name will work with or without data in a table Tags database
0 Comments
Post a Comment