如何用mysql更改表的字段名。
发布网友
发布时间:2022-04-23 04:23
我来回答
共1个回答
热心网友
时间:2022-04-09 14:18
语法:alter
table
表名
change
column
旧字段名
新字段名
[约束条件];
示例:
alter
table
tv_play
change
column
shit
a_piece_of_shit;
如果字段有数据,最好新建a_piece_of_shit字段,然后把shit字段信息更新到a_piece_of_shit中,再删除shit字段