Oracle中常用的修改表操作的sql语句

摘要: drop table test2;create table test( id integer not null, name varchar2(100));---可为空alter table test modify (id null);---不可为空alter table test modify (id not null);---添加表中的列 alter table + add子句alter table test add (ceilphone varchar2(20));---修改表中的列 alter table + modify子句,如果是不可为空,要先update,再修改alter ... 阅读全文
posted @ 2012-03-19 14:25 java课程设计例子 阅读(216) 评论(0) 推荐(0)