對資料庫中的表或欄位重新命名

weixin_34162629發表於2016-10-30
mysql> alter table test rename as T;
Query OK,
0 rows affected (0.21 sec)
//對欄位重新命名

alter table test change t_name t_name_new varchar(20);

 

相關文章