准备工作 查询一个表的语法 eg :
1.增加一列
eg:alter table table1 add age number(8)
2.删除一列
eg:alter table table1 drop column age
3.更改一列名
eg: alter table table1 rename column age to sex
4.将表名重新命名--如 将表table1更名为test表名
eg:alter table table1 rename to test
eg:select * from test