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

1,898 阅读1分钟

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

例如:

alter table tableName drop (name)

\