Oracle數(shù)據(jù)庫語句大全 ORACLE支持五種類型的完整性約束 NOT NULL (非空)--防止NULL值進(jìn)入指定的列,在單列基礎(chǔ)上定義,默認(rèn)情況下,ORACLE允許在任何列中有NULL值. CHECK (檢查)--檢查在約束中指定的條件是否得到了滿足. UNIQUE (唯一)--保證在指定的列中沒有重復(fù)值.在該表中每一個值或者每一組值都將是唯一的. PRIMARY KEY (主鍵)--用來唯一的標(biāo)識出表的每一行,并且防止出現(xiàn)NULL值,一個表只能有一個主鍵約束. POREIGN KEY (外部鍵)--通過使用公共列在表之間建立一種父子(parent-child)關(guān)系,在表上定義的外部鍵可以指向主鍵或者其他表的唯一鍵.ORACLE支持五種類型的完整性約束 NOT NULL (非空)--防止NULL值進(jìn)入指定的列,在單列基礎(chǔ)上定義,默認(rèn)情況下,ORACLE允許在任何列中有NULL值. CHECK (檢查)--檢查在約束中指定的條件是否得到了滿足. UNIQUE (唯一)--保證在指定的列中沒有重復(fù)值.在該表中每一個值或者每一組值都將是唯一的. PRIMARY KEY (主鍵)--用來唯一的標(biāo)識出表的每一行,并且防止出現(xiàn)NULL值,一個表只能有一個主鍵約束. POREIGN KEY (外部鍵)--通過使用公共列在表之間建立一種父子(parent-child)關(guān)系,在表上定義的外部鍵可以指向主鍵或者其他表的唯一鍵. 1--設(shè)置每行顯示多少字符 2 設(shè)置每頁顯示多少條記錄 set pagesize 30; 3 用戶名的切換: 如 conn system/tiger Conn sys/change_on_install as sysdba(注意超級用戶 在后面加as sysdba) 4 在超級用戶下查找普通用戶的表是查不到的
必須這樣查找 5 查看當(dāng)前是那個用戶身份登錄: show user; 6 查看有多少張表: select * from tab;(注意不同用戶下的表是不同的) 7查看表的結(jié)構(gòu): desc emp(emp為表名) 8 取出重復(fù)的列(DISTINCT): 如 SELECT
DISTINCT 9字符串的鏈接操作用: 10 查詢有獎金的員工: select* from emp where comm is not null; 11 查詢沒有獎金的員工信息: select * from emp where comm is null; 12 兩個條件以上就得用and
如查詢工資大雨1500和有獎金的員工 select * from emp
where 13 表示兩個條件有一個滿足就可就用:or 如查詢工資大于1500或者沒有獎金的員工信息 Select * from emp where sal>1500 or comm is not null; 14取反可以用not 如 查詢員工工資不大于1500和有獎金的員工信息 如: 15 在什么什么之間用between----and----如查詢工資在1500和3000之間的員工信息: Select * from emp 16 Select * from emp where empno in(2323,4555,2222); 17.l模糊查詢 Select * from emp where ename LIKE '_M%'; 又如姓名中包含M的員工 18oracle中不等于有兩種表示方式"<>"和"!=" 19 排序用order by {asc
desc}其中asc 是升序排列
如果不寫就默認(rèn)按升序排列desc是按降序排列 Select * from emp order by sal asc(升序) Selecct * from emp order by sal desc(降序) Select * from emp where deptno='10' order by sal desc,hiredate asc;(查詢部門10的員工工資的升序排列如果工資相等就按員工的入職時間排序) 20.group by 用于對查詢的結(jié)果進(jìn)行分組統(tǒng)計:
顯示每個部門的平均工資和最高工資 Select avg(sal),max(sal) from emp group by deptno; Having 如:select avg(sal), deptno from emp group by deptno having avg(sal)>2000; 2. 單行函數(shù): 1 小寫變大寫: upper 如 select * from emp where ename=upper('smith'); 講一個字符串變?yōu)樾懽帜副硎?/b> 如: 將單詞的首字母變大寫 用 INITCAP 如: SELECT INITCAP('HELLO WORLD') FROM DUAL; 2.字符串的操作 3數(shù)值函數(shù) 四舍五入: round(); 截斷小數(shù)位:trunc(); 一.入門部分 1. 2. 3. 4. 5. 6. 7. 8. 9. 10.授予使用表空間的角色 11.授予操作表的權(quán)限 12.修改表的結(jié)構(gòu)(alter) Alter table 二.SQL查詢和SQL函數(shù) 1.SQl支持的命令: 2.Oracle數(shù)據(jù)類型 Long列不能定義唯一約束或主鍵約束 long列上不能創(chuàng)建索引 過程或存儲過程不能接受long類型的參數(shù)。 數(shù)值型 函數(shù) Oracle中的偽列 偽列可以查詢,但不能插入、更新和修改它們的值 3.數(shù)據(jù)定義語言 用于操作表的命令 修改表的命令 4.數(shù)據(jù)操縱語言 select,update,delete,insert select distinct stu_name from stu_tbl;-- 5.數(shù)據(jù)控制語言 ---------- -------------------- ----------
---------- -------------------- -- ----------
----------- 李華 accp admin 李華 accp nimda 已選擇6行。 --------- accp admin nimda 李華 ---------- accp 李華 ---------- Admin ---------- ----------------------- ----------
8.SQL函數(shù) 日期函數(shù) 數(shù)字函數(shù) 字符函數(shù) 轉(zhuǎn)換函數(shù):ToChar(),ToDate(),ToNumber() 其他函數(shù): Nvl(exp1,exp2):表達(dá)式一為null時,返回表達(dá)式二 Nvl2(exp1,exp2,exp3):表達(dá)式一為null時返回表達(dá)式三,否則返回表達(dá)式二 Nullif(exp1,exp2):兩表達(dá)式相等時,返回null,否則返回表達(dá)式一 Avg,Min,Max,Sum,Count Group by,having Row_number,rank,dense_rank 三.鎖和數(shù)據(jù)庫對象 1.鎖:數(shù)據(jù)庫用來控制共享資源并發(fā)訪問的機(jī)制。 表,序列,視圖,索引 更改刪除序列:
視圖 索引 創(chuàng)建標(biāo)準(zhǔn)索引: 創(chuàng)建唯一索引: 四.使用PL/SQL 可用于創(chuàng)建存儲過程,觸發(fā)器,程序包,給SQL語句的執(zhí)行添加程序邏輯。 數(shù)據(jù)操縱命令 支持面向?qū)ο缶幊?OOP) 可移植性 更佳的性能,PL/SQL經(jīng)過編譯執(zhí)行 分為三個部分:聲明部分,可執(zhí)行部分和異常處理部分 打開輸出 --根據(jù)輸入編號獲取某學(xué)員的成績--if declare score user_tbl.score%type; begin select score into score from user_tbl where id='&id'; if score>90 then dbms_output.put_line('優(yōu)秀'); elsif score>80 then dbms_output.put_line('良好'); elsif score>60 then dbms_output.put_line('及格'); else dbms_output.put_line('差'); end if; end; --根據(jù)學(xué)員姓名獲取某學(xué)員的成績--if declare score user_tbl.score%type; begin select score into score from user_tbl where user_name='&name'; if score>90 then dbms_output.put_line('優(yōu)秀'); elsif score>80 then dbms_output.put_line('良好'); elsif score>60 then dbms_output.put_line('及格'); else dbms_output.put_line('差'); end if; end; --case的使用 declare grade user_tbl.grade%type; begin select grade into grade from user_tbl where id='&id'; case grade when 'A' then dbms_output.put_line('優(yōu)異'); when 'B' then dbms_output.put_line('優(yōu)秀'); when 'C' then dbms_output.put_line('良好'); else dbms_output.put_line('一般'); end case; end; --基本循環(huán) declare i number(4):=1; begin loop dbms_output.put_line('loop size:'||i); i:=i+1; exit when i>10; end loop; end; --while循環(huán) declare i number(4):=1; begin while i<=10 loop dbms_output.put_line('while loop size='||i); i:=i+1; end loop; end; --for循環(huán) declare i number(4):=1; begin for i in 1..10 loop dbms_output.put_line('for loop Size:'||i); end loop; end; declare i number(2):=1; j number(2):=1; begin for i in reverse 1..9 loop for j in 1..i loop dbms_output.put(j||'x'||i||'='||j*i||' '); end loop; dbms_output.put_line(''); end loop; end; --動態(tài)SQL declare userId number(2); sql_str varchar2(100); userName user_tbl.user_name%type; begin execute immediate 'create table testExe(id number,test_name varchar2(20))'; userId:='&userId'; sql_str:='select user_name from user_tbl where id=:id'; execute immediate sql_str into userName using userId; dbms_output.put_line(userName); end; (or declare ) --異常處理 declare grade number(4); begin grade:='&grade'; case grade when 1 then dbms_output.put_line('好的'); --else dbms_output.put_line('不好'); end case; exception when case_not_found then dbms_output.put_line('輸入類型不匹配!'); end;
declare rowD user_tbl%rowtype; begin select * into rowD from user_tbl; dbms_output.put_line(rowD.id||''||rowD.user_name||' '||rowD.password); exception when too_many_rows then dbms_output.put_line('不能將多行賦予一個屬性!'); end; or declare rowD user_tbl%rowtype; begin select * into rowD from user_tbl where id=5; dbms_output.put_line(rowD.id||' '||rowD.user_name||' '||rowD.password); exception when too_many_rows then dbms_output.put_line('不能將多行賦予一個屬性!'); when no_data_found then dbms_output.put_line('沒有您要查找的數(shù)據(jù)!'); end; --自定義錯誤 declare invalidError exception; category varchar2(20); begin category:='&category'; if category not in('附件','頂盤','備件') then raise invalidError; else dbms_output.put_line('您輸入的類別是:'||category); end if; exception when invalidError then dbms_output.put_line('無法識別的類別!'); end; --引發(fā)應(yīng)用程序異常 declare app_exception exception; grade user_tbl.grade%type; begin select grade into grade from user_tbl where id=&id; if grade='A' then raise app_exception; else dbms_output.put_line('查詢的等級為:'||grade); end if; exception when app_exception then raise_application_error(-20001,'未知的等級!'); end;
游標(biāo)類型:隱式游標(biāo),顯式游標(biāo),REF游標(biāo) REF游標(biāo)用于處理運行時才能確定的動態(tài)SQL查詢的結(jié)果 ==========隱式游標(biāo)========== 在PL/SQL中使用DML語句時自動創(chuàng)建隱式游標(biāo) 隱式游標(biāo)的屬性: 示例: begin update user_tbl set score=score+5; if SQL%found then elsif sql%notfound then end if; if SQL%isopen then else end if; end; ==========顯式游標(biāo)========== 在PL/SQL的聲明部分定義查詢,該查詢可以返回多行
J
J
J
J 聲明游標(biāo)完成兩個任務(wù): 給游標(biāo)命名 將一個查詢與游標(biāo)關(guān)聯(lián) 打開游標(biāo): 取數(shù)據(jù): 關(guān)閉游標(biāo): 顯式游標(biāo)的屬性: %found %notfound %rowcount %isopen 示例: declare users user_tbl%rowtype; cursor boys_cur is select * from user_tbl where sex='h'; begin open boys_cur; loop fetch boys_cur into users; exit when boys_cur%notfound; dbms_output.put_line(users.user_name||' dbms_output.put_line(boys_cur%rowcount); end loop; close boys_cur; end; 帶參的顯式游標(biāo) declare users user_tbl%rowtype; cursor boys_cur(sexParam varchar2) is select * from user_tbl where sex=sexParam; begin open boys_cur('&sex'); loop fetch boys_cur into users; exit when boys_cur%notfound; dbms_output.put_line(users.user_name||' dbms_output.put_line(boys_cur%rowcount); end loop; close boys_cur; end; 使用顯式游標(biāo)更新行 declare cursor user_update_cur is select sex from user_tbl for update; usersex user_tbl.sex%type; begin open user_update_cur; loop fetch user_update_cur into usersex; exit when user_update_cur%notfound; dbms_output.put_line(usersex); if usersex = 'M' then else end if; end loop; close user_update_cur; commit; end; 循環(huán)游標(biāo) declare cursor user_cur is select * from user_tbl; begin for username in user_cur loop end loop; end; ==========REF游標(biāo)========== REF游標(biāo)和游標(biāo)變量用于處理運行時動態(tài)執(zhí)行的SQL查詢 創(chuàng)建游標(biāo)變量的步驟:
J
J 聲明類型的語法 Type ref_cursor_name is ref cursor [return return_type]; 打開游標(biāo)變量的語法 Open cursor_name for select_statement; ----聲明強(qiáng)類型的游標(biāo) declare type ref_cur is ref cursor return user_tbl%rowtype; users_cur ref_cur; ----聲明弱類型的游標(biāo) declare type ref_cur is ref cursor; users_cur ref_cur; 示例 ----強(qiáng)類型 declare type ref_cur is ref cursor return user_tbl%rowtype; users_cur ref_cur; users user_tbl%rowtype; begin open users_cur for select * from user_tbl where user_name='ny2t92'; loop end loop; close users_cur; end; ----弱類型 declare type ref_cur is ref cursor; my_cur ref_cur; users user_tbl%rowtype; stus stu_tbl%rowtype; begin open my_cur for select * from user_tbl; loop end loop; close my_cur; open my_cur for select * from user_tbl where user_name='ny2t92'; loop end loop; close my_cur; open my_cur for select * from stu_tbl; loop fetch my_cur into stus; exit when my_cur%notfound; dbms_output.put_line(stus.stu_Name); end loop; close my_cur; end; ----動態(tài)SQL游標(biāo) declare type ref_cur is ref cursor; my_cur ref_cur; users user_tbl%rowtype; username varchar2(20); sqlstmt varchar2(200); begin username:='&username'; sqlstmt := 'select * from user_tbl where user_name= :name'; open my_cur for sqlstmt using username; loop end loop; close my_cur; end; 六.子程序 子程序分為:存儲過程和函數(shù),它是命名的PL/SQL塊,編譯并存儲在數(shù)據(jù)庫中。 子程序的各個部分:聲明部分,可執(zhí)行部分,異常處理部分。 過程----執(zhí)行某些操作 函數(shù)----執(zhí)行操作并返回值 ==========存儲過程========== 創(chuàng)建過程的語法: create or replace procedure proce_name (parameter_list) is|as local variable declaration begin executable statements exception exception_handlers end proce_name; 過程參數(shù)的三種模式: In----用于接收調(diào)用的值,默認(rèn)的參數(shù)模式 Out----用于向調(diào)用程序返回值 In out----用于接收調(diào)用程序的值,并向調(diào)用程序返回更新的值 執(zhí)行過程的語法: Execute proce_name(parameter_list); 或 Declare Variable var_list; Begin Proce_name(var_list); End; 將過程執(zhí)行的權(quán)限授予其他用戶: Grant execute on proce_name to scott; Grant execute on proce_name to public; 刪除存儲過程: Drop procedure proce_name; ==========函數(shù)========== 創(chuàng)建函數(shù)的語法: Create or replace function Fun_name (parameter_list) Return datatype is|as Local declarations Begin Executable statements; Return result; Exception Exce_handlers; End; 函數(shù)只能接收in參數(shù),不能接受out或in out參數(shù),形參不能是PL/SQL類型 函數(shù)的返回類型也必須是數(shù)據(jù)庫類型 訪問函數(shù)的方式:
J
J Select fun_name(parameter_list) from dual; |
|