--建表
create table my_test_table_20110414
(
aa number,
bb varchar2(10)
);
--修改表结构
alter table my_test_table_20110414 add cc varchar2(10);
alter table my_test_table_20110414 modify cc varchar2(100);
--修改表数据内容
--插入
insert into my_test_table_20110414(aa,bb)
values (1,'2');
commit;
--查询
select * from my_test_table_20110414;
--修改
update my_test_table_20110414
set cc='test'
where aa=1;
commit;
--不明白可以随时问我,一直在
温馨提示:答案为网友推荐,仅供参考