删除表中的某列
更新:HHH   时间:2023-1-7


--删除列
alter table s
drop constraint age_cons--在删除列之前需要先删除约束
alter table s
drop column age


返回数据库教程...