Sql代碼
創(chuàng)新互聯(lián)技術(shù)團隊十多年來致力于為客戶提供網(wǎng)站設(shè)計制作、做網(wǎng)站、品牌網(wǎng)站制作、全網(wǎng)營銷推廣、搜索引擎SEO優(yōu)化等服務(wù)。經(jīng)過多年發(fā)展,公司擁有經(jīng)驗豐富的技術(shù)團隊,先后服務(wù)、推廣了上1000+網(wǎng)站,包括各類中小企業(yè)、企事單位、高校等機構(gòu)單位。create table test(
id varchar2(10),
age number
);
Sql代碼
create table
as
select * from test group by id;
Sql代碼
drop table test;--刪除表結(jié)構(gòu)和表數(shù)據(jù)
Sql代碼
truncate table test;--清空數(shù)據(jù)表數(shù)據(jù),沒有返回余地
delete from test;---清空數(shù)據(jù)表數(shù)據(jù),有返回余地
5、添加字段下載
Sql代碼
alter table test add (
name varchar2(10),
interest varchar2(20)
);
Sql代碼
alter table test drop name;
7.1更新一條數(shù)據(jù)
Sql代碼
update test t
set t.id='001'
where t.id is not null;
commit;
7.2從其他表更新多條數(shù)據(jù)
Sql代碼 下載
update test t set t.name=(
select tm.name
from test_common tm
where t.id=tm.id
);
commit;
--備注:update數(shù)據(jù)時,最好將update子查詢中的sql單獨建表,提高更新速度。
7.3在PL/SQL中查詢完數(shù)據(jù)直接進入編輯模式更改數(shù)據(jù)
Sql代碼
select * from test for update;
--備注:更新操作執(zhí)行完,要鎖上數(shù)據(jù)表,同時執(zhí)行commit提交操作
8、查詢數(shù)據(jù)
Sql代碼
select * from test;
Sql代碼 下載
select count(0) from test;
--備注:count(0)或者其他數(shù)字比count(*)更加節(jié)省數(shù)據(jù)庫資源,高效快捷
10.1插入一條數(shù)據(jù)中的多個字段
Sql代碼
insert into test (C1,C2) values(1,'技術(shù)部');
Sql代碼
insert into test(C1,C2) select C1,C2 from test_common;
commit;
10.2插入多條數(shù)據(jù)
Sql代碼
insert into test(
id,
name,
age
)
select
id,
name,
age
from test_common;
commit;
--備注:1、插入多條數(shù)據(jù)時,insert into語句后面沒有values,直接拼接數(shù)據(jù)查詢語句;2、在oracle中對數(shù)據(jù)表進行了insert、update、delete等操作后,要執(zhí)行commit提交,否則在系統(tǒng)處是禁止操作數(shù)據(jù)庫的,因為此時數(shù)據(jù)庫已經(jīng)被鎖死,這是數(shù)據(jù)庫為了防止多人同時修改數(shù)據(jù)庫數(shù)據(jù)造成混亂的一種防范機制。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。