Use the following query:
ALTER TABLE tableName CHANGE `oldcolname` `newcolname` datatype(length);
The
RENAME
function is used in Oracle databases.ALTER TABLE tableName RENAME COLUMN "oldcolname" TO "newcolname" datatype(length);
Notice the backticks used for MySQL, whereas double quotes are used for Oracle's syntax. Also note that MySQL 8.0 might not accept backticks. In that case, execute the query without backticks and it will probably work.
Không có nhận xét nào:
Đăng nhận xét