数据库删除字段的SQL语句 :
alter table 表名 
drop (column)

例如:

alter table tableName drop (name)

 

 

 

更多推荐

oracle数据库删除表字段的SQL语句