作者:小女人要有小性感 | 来源:互联网 | 2024-10-24 18:47
本文提供了Oracle数据库日常管理和操作的实用指南,详细介绍了如何创建表的SQL代码示例,例如:`CREATETABLEtest(idVARCHAR2(10),ageNUMBER);`同时,还涵盖了数据表的基本维护、索引优化及常见问题解决策略,旨在帮助数据库管理员提升工作效率和数据管理能力。
1、创建表Sql代码
create table test(
id varchar2(10),
age number
);
2、备份表Sql代码
create table
as
select * from test group by id;
3、删除表Sql代码
drop table test;
4、清空表Sql代码
truncate table test;
delete from test;
5、添加字段下载
Sql代码
alter table test add (
name varchar2(10),
interest varchar2(20)
);
6、删除字段Sql代码
alter table test drop name;
7、更新数据7.1更新一条数据
Sql代码
update test t
set t.id='001'
where t.id is not null;
commit;
7.2从其他表更新多条数据
Sql代码 下载
update test t set t.name=(
select tm.name
from test_common tm
where t.id=tm.id
);
commit;
7.3在PL/SQL中查询完数据直接进入编辑模式更改数据
Sql代码
select * from test for update;
8、查询数据
Sql代码
select * from test;
9、查询数据表数量Sql代码 下载
select count(0) from test;
10、插入数据10.1插入一条数据中的多个字段
Sql代码
insert into test (C1,C2) values(1,'技术部');
Sql代码
insert into test(C1,C2) select C1,C2 from test_common;
commit;
10.2插入多条数据
Sql代码
insert into test(
id,
name,
age
)
select
id,
name,
age
from test_common;
commit;