久久久久综合给合狠狠狠,人人干人人模,大陆一级黄色毛片免费在线观看,亚洲人人视频,欧美在线观看一区二区,国产成人啪精品午夜在线观看,午夜免费体验

薈聚奇文、博采眾長、見賢思齊
當前位置:公文素材庫 > 計劃總結 > 工作總結 > oracle復習總結

oracle復習總結

網(wǎng)站:公文素材庫 | 時間:2019-05-29 07:03:48 | 移動端:oracle復習總結

oracle復習總結

一、

1.儲存模式是一種包含了諸如段。視圖。過程。函數(shù)程序包。觸發(fā)器。用戶自定義的對象集合類型序列同義詞和數(shù)據(jù)連接對象的邏輯結構。2.用戶角色,對象權限系統(tǒng)權限

Select,insert,update,delete可以使用的權限是execute二.SQL語言

1.創(chuàng)建表createtable表名2.約束

(1)非空約束notnull(2)唯一約束unique

(3)主鍵約束primarykey最多只能有一個主鍵約束主鍵約束可以使用一列組成,不能有重復的不能為空

(4)外鍵約束foreignkey

外鍵是指引用一個表中的某個列或某幾個列,或本表中另一個列或者幾個列被引用的列應該是主鍵列或者唯一性約束列。

約束關鍵詞constraint名稱foreignkeyreferences引用表名引用表主鍵(5)檢查約束checkconstraint名稱check表達式(6)缺省約束default3.修改表(1)增加列

Altertable表名add新列名數(shù)據(jù)類型(2)更新列

Altertable表名modify列名數(shù)據(jù)類型(3)刪除列

Altertable表名dropcolumn要刪除的列名(4)刪除表Droptable表名2.DML

1.檢索所有列Select*fromemp

Selectename,jobfromemp;

Selectename,to_char(hiredate,yyyy-mm-dd)fromempSelectdistinctdeptno,jobfromemp取消重復行Selectename,sal*12frommep處理null

Selectename,sal,comm.,(sal+comm)fromemp連接字符串

Selectename||isa||jobas”employdetail”fromemp使用簡單where子句

Selectename,salfromempwheresal>201*

Selectjob,salfromempwhereename=SCOTT;

Selectjob,salfromempwherelower(ename)=scott;

Where子句和betweenand

Selectename,sal,hiredate,jobfromempwheresalbetween1000and201*Where子句中使用like操作符

Selectename,salfromempwhereenamelikeS%;Orderby子句

1,升序排列

Selectename,salfromempwheredeptno=30orderbysal;2.降序排列

Selectename,sal,comm.Fromempwheredeptno=30orderbysaldesc3.使用多列排序

Selectename,sal,commmfromempwheredeptno=30orderbysalasc,comm.Desc4.數(shù)據(jù)分組Gropby1,分組函數(shù)

Selectmax(sal),min(sal)fromemp2,取消重復值

Selectcount(distinctdeptno)asdistinct_deptfrommep3.groupbyhaving子句

Selectcolumn,group_functionfrom表名whereconditiongroupbygroupby_expressionhavinggroup_condition

使用groupby進行單列分組selectdeptno,avg(sal),mac(sal)fromempgroupbydeptno使用groupby進行多列分組

Selectdeptno,job,avg(sal),max(sal)fromempgroupbydeptno,job;

使用having子句限制分組顯示selectdeptno,avg(sal),max(sal)fromempgroupbydeptnohavingavg(sal)ename=SMITH)成對比較

Selectename,sal,comm.,deptnofromempwhere(sal,nvl(comm.,-1))in(selectsal,nvl(comm.,-1)fromempwheredeptno=30)4.合并查詢

Union并集走掉結果集中的重復行unionall兩個結果記的并集不會取消重復行intersect兩個結果集的交集minus兩個結果集的差集Insert

(1)插入單行數(shù)insertintotablecolumn1coulmn2valuesvalues1values2

不使用列插入單行數(shù)據(jù)

Insertintodeptvalues(50,TRAINBOSTON)使用列插入單行數(shù)據(jù)

Insertintoemp(emp,ename,jobhiredate)values(1244,john,clerk,01-3-86)使用子查詢插入數(shù)據(jù)

Insertintoemployee(empno,ename,sal,deptno)selectempno,enmae,sal,deptnofromempwheredeptno=20使用first

Selectfirstwhendeptno=10thenintodept10whendeptno=20thenintodept20elseintootherselect*fromemp555update2.3事務鎖

事務用于確保數(shù)據(jù)庫的一致性主要由insertupdatedeleteselect。。。。forupdate提交事務commit回退事務rollback三.數(shù)據(jù)庫對象1,同義詞

Createsynonym名字forobject_name2序列創(chuàng)建序列

Createsequence名字Startwith名字incrementby數(shù)字(初始值)maxvalue數(shù)字cycle和nocycle使用序列

Selects_test.nextvalfromdualSelects_test.currvalformdual使用序列填充主鍵Creaetetablestudent(

Idintegerconstraints_testprimarykey,Namevarchar2(20);

Insertintostudent(id,name)values(s_test.nextval,fendou)3.視圖

1.視點集2.簡化操作3.定制數(shù)據(jù)4.合并分割數(shù)據(jù)5.安全性4.創(chuàng)建并使用視圖

Createorreplaceviewview_nameassubqueryconstranintconstraint_name

Createviewemp_viewasselectempno,ename,deptnofromempwheredeptno=30Insertintoemp_viewvalues(201*,fendou,30)創(chuàng)建具有checkoption約束的視圖Creaeteorreplaceemp_viewasselectempno,ename,deptnofromempwheredeptno=30wiehcheckoptionconstraintemp_view_ck5.索引

索引加快數(shù)據(jù)的一種有效方式

Creaeteuniqueindexindex_nameontable_namecolumn_name(column_name…)Tablespacetablespace_name

Createindexi_emp_indexonemp(deptno)

Createendexi_emp_ednoonemp(empno,deptno)修改索引

Alterindexi_emp_ednorenametoi_emp_noDropindexi_emp_no;臨時表

Createglobaltemporary表名列類型Oncommitpreserverows會話中斷時Commit時

Createglobaltemporarytabletemp_test2(tempIdint)

Oncommitdeleterows;四.PLSQL編程簡介1,塊結構Declare

名稱類型值Begin

執(zhí)行異常處理部分End

已知矩形面積和高求寬度DeclareV_widthint;V_heithtint:=2;V_areaint:=6;Begin

SetthewidtheaualtotheareadividedbytheheightV_width:=v_area/v_height;

Dbms_output.put_line(“v_width=”||v_width);Exception

Whenzero_dividethen

Dbms_output.put_line(divisonbyzero);End

2,變量和類型

Intvarchar2number條件邏輯

Ifthenelseelseifendif循環(huán)

While循環(huán)for循環(huán)簡單循環(huán)Loop

StatementsEndloop

While循環(huán)

友情提示:本文中關于《oracle復習總結》給出的范例僅供您參考拓展思維使用,oracle復習總結:該篇文章建議您自主創(chuàng)作。

來源:網(wǎng)絡整理 免責聲明:本文僅限學習分享,如產(chǎn)生版權問題,請聯(lián)系我們及時刪除。


oracle復習總結》由互聯(lián)網(wǎng)用戶整理提供,轉載分享請保留原作者信息,謝謝!
鏈接地址:http://www.weilaioem.com/gongwen/671830.html
相關文章