谁有oracle 建库建表的 增删改查 一套的 sql语句 谢谢了

不要告诉我百度有的是,如果能找到,我自己就找到了,小妹无能,如果有链接也可以发一下。谢谢各位兄弟姐妹了。

希望代码没有错能执行。

--建表
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;

--不明白可以随时问我,一直在
温馨提示:答案为网友推荐,仅供参考
第1个回答  2011-04-14
create table table_name
(
column_name column_type
)
tablespace tablespace_name
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64
minextents 1
maxextents unlimited
);
相似回答