Sql代码
创新互联技术团队十多年来致力于为客户提供网站设计制作、做网站、品牌网站制作、全网营销推广、搜索引擎SEO优化等服务。经过多年发展,公司拥有经验丰富的技术团队,先后服务、推广了上1000+网站,包括各类中小企业、企事单位、高校等机构单位。create table test(
id varchar2(10),
age number
);
Sql代码
create table
as
select * from test group by id;
Sql代码
drop table test;--删除表结构和表数据
Sql代码
truncate table test;--清空数据表数据,没有返回余地
delete from test;---清空数据表数据,有返回余地
5、添加字段下载
Sql代码
alter table test add (
name varchar2(10),
interest varchar2(20)
);
Sql代码
alter table test drop name;
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;
--备注:update数据时,最好将update子查询中的sql单独建表,提高更新速度。
7.3在PL/SQL中查询完数据直接进入编辑模式更改数据
Sql代码
select * from test for update;
--备注:更新操作执行完,要锁上数据表,同时执行commit提交操作
8、查询数据
Sql代码
select * from test;
Sql代码 下载
select count(0) from test;
--备注:count(0)或者其他数字比count(*)更加节省数据库资源,高效快捷
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;
--备注:1、插入多条数据时,insert into语句后面没有values,直接拼接数据查询语句;2、在oracle中对数据表进行了insert、update、delete等操作后,要执行commit提交,否则在系统处是禁止操作数据库的,因为此时数据库已经被锁死,这是数据库为了防止多人同时修改数据库数据造成混乱的一种防范机制。
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。