1、修改表中的字段
Alter table 表名 modify (字段名 字段的类型);
2、查看新建的表的在数据库
Seelct table_name from user_tables where 条件
3、根据存在的一个表创建另外的一个表
Create table 要创建的表 As Select 字段名|* from 存在的表 where 条件
4、删除一个表
Drop tale 要删除的表的名字
5、重命名表的名字
Rename 存在的表的表名 to 修改成的表名
6、在一个表中添加一个字段
Alter table 表名 add (字段名 字段的类型 [约束])
7、把一个表中的某个字段念设置成为不可用的字段
Alter table 表名 set unused (字段名)
8、直接删除表中的一个字段
Alter table 表名 drop column(字段名)
9、给一个表添加注释
Comment on table 表名 is ‘注释’