- 浏览: 733 次
- 性别:
- 来自: 杭州
最新评论
文章列表
1.增加字段 alter table table_name add newColumn varchar2(200)
2.删除字段 ALTER TABLE table_name DROP COLUMN column_NAME
3.修改字段类型 alter table test modify test1 varchar2(100);
4.修改字段名 alter table test rename column test1 to test3;
5.添加主键:Alter table tabname add primary key(col)
删除主键:Al ...