摘要: 更换字段名 alter table 表名 rename column 字段名 to 新字段名; 更换表名 alter table 表名 rename to 新表名; 更改字段长度 alter table 表名 alter column 字段名 type VARCHAR(1024); 更改字段类型 a 阅读全文
posted @ 2022-11-21 18:51 万智 阅读(809) 评论(0) 推荐(0)