真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

oracle常規(guī)操作-創(chuàng)新互聯(lián)

1、創(chuàng)建表

Sql代碼  oracle常規(guī)操作

創(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)單位。
  1. create table test(

  2.   id varchar2(10),

  3.   age number

  4. );


2、備份表

Sql代碼  oracle常規(guī)操作

  1. create table

  2. as

  3. select * from test group by id;

3、刪除表

Sql代碼  oracle常規(guī)操作

  1. drop table test;--刪除表結(jié)構(gòu)和表數(shù)據(jù)


4、清空表

Sql代碼  oracle常規(guī)操作

  1. truncate table test;--清空數(shù)據(jù)表數(shù)據(jù),沒有返回余地

  2. delete from test;---清空數(shù)據(jù)表數(shù)據(jù),有返回余地

5、添加字段下載

Sql代碼  oracle常規(guī)操作

  1. alter table test add (

  2.   name varchar2(10),

  3.   interest varchar2(20)

  4. );


6、刪除字段

Sql代碼  oracle常規(guī)操作

  1. alter table test drop name;


7、更新數(shù)據(jù)

7.1更新一條數(shù)據(jù)

Sql代碼  oracle常規(guī)操作

  1. update test t

  2. set t.id='001'

  3. where t.id is not null;

  4. commit;

7.2從其他表更新多條數(shù)據(jù)

Sql代碼 下載 oracle常規(guī)操作

  1. update test t set t.name=(

  2.   select tm.name

  3.     from test_common tm

  4.   where t.id=tm.id

  5. );

  6. commit;

  7. --備注:update數(shù)據(jù)時,最好將update子查詢中的sql單獨建表,提高更新速度。

7.3在PL/SQL中查詢完數(shù)據(jù)直接進入編輯模式更改數(shù)據(jù)

Sql代碼  oracle常規(guī)操作

  1. select * from test for update;

  2. --備注:更新操作執(zhí)行完,要鎖上數(shù)據(jù)表,同時執(zhí)行commit提交操作

8、查詢數(shù)據(jù)

Sql代碼  oracle常規(guī)操作

  1. select * from test;

9、查詢數(shù)據(jù)表數(shù)量

Sql代碼  下載

  1. select count(0) from test;

  2. --備注:count(0)或者其他數(shù)字比count(*)更加節(jié)省數(shù)據(jù)庫資源,高效快捷


10、插入數(shù)據(jù)

10.1插入一條數(shù)據(jù)中的多個字段

Sql代碼  oracle常規(guī)操作

  1. insert into test (C1,C2) values(1,'技術(shù)部');

Sql代碼  oracle常規(guī)操作

  1. insert into test(C1,C2) select C1,C2 from test_common;

  2. commit;

10.2插入多條數(shù)據(jù)

Sql代碼  oracle常規(guī)操作

  1. insert into test(

  2.   id,

  3.   name,

  4.   age

  5. )

  6. select

  7.   id,

  8.   name,

  9.   age

  10. from test_common;

  11. commit;

  12. --備注: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)用場景需求。


本文名稱:oracle常規(guī)操作-創(chuàng)新互聯(lián)
文章分享:http://weahome.cn/article/dpdcsi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部