oracle sql语句大全
生活随笔
收集整理的這篇文章主要介紹了
oracle sql语句大全
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
ORACLE支持五種類型的完整性約束NOT NULL (非空)--防止NULL值進入指定的列,在單列基礎(chǔ)上定義,默認情況下,ORACLE允許在任何列中有NULL值.CHECK (檢查)--檢查在約束中指定的條件是否得到了滿足.UNIQUE (唯一)--保證在指定的列中沒有重復值.在該表中每一個值或者每一組值都將是唯一的.PRIMARY KEY (主鍵)--用來唯一的標識出表的每一行,并且防止出現(xiàn)NULL值,一個表只能有一個主鍵約束.POREIGN KEY (外部鍵)--通過使用公共列在表之間建立一種父子(parent-child)關(guān)系,在表上定義的外部鍵可以指向主鍵或者其他表的唯一鍵.ORACLE支持五種類型的完整性約束NOT NULL (非空)--防止NULL值進入指定的列,在單列基礎(chǔ)上定義,默認情況下,ORACLE允許在任何列中有NULL值.CHECK (檢查)--檢查在約束中指定的條件是否得到了滿足.UNIQUE (唯一)--保證在指定的列中沒有重復值.在該表中每一個值或者每一組值都將是唯一的.PRIMARY KEY (主鍵)--用來唯一的標識出表的每一行,并且防止出現(xiàn)NULL值,一個表只能有一個主鍵約束.POREIGN KEY (外部鍵)--通過使用公共列在表之間建立一種父子(parent-child)關(guān)系,在表上定義的外部鍵可以指向主鍵或者其他表的唯一鍵.1--設(shè)置每行顯示多少字符 set linesize 300;2 設(shè)置每頁顯示多少條記錄 set pagesize 30;3 用戶名的切換: 如 conn system/tigerConn sys/change_on_install as sysdba(注意超級用戶 在后面加as sysdba)4 在超級用戶下查找普通用戶的表是查不到的 必須這樣查找 如 select * from scott.emp(普通用戶下的emp表)5 查看當前是那個用戶身份登錄: show user;6 查看有多少張表: select * from tab;(注意不同用戶下的表是不同的)7查看表的結(jié)構(gòu): desc emp(emp為表名)8 取出重復的列(DISTINCT): 如 SELECT DISTINCT JOB EMP(去掉job的重復的值)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 sal>1500 and comm is not null;13 表示兩個條件有一個滿足就可就用:or 如查詢工資大于1500或者沒有獎金的員工信息Select * from emp where sal>1500 or comm is not null;14取反可以用not 如 查詢員工工資不大于1500和有獎金的員工信息 如:Select * from emp where not (sal>1500 or comm is not null);15 在什么什么之間用between----and----如查詢工資在1500和3000之間的員工信息:Select * from emp where sal between 1500 and 3000;16 查詢員工編號是2323, 4555, 2222的員工具體信息: 如Select * from emp where empno in(2323,4555,2222);17.l模糊查詢 like 一般結(jié)合"%"和"_"使用其中%:表示可以匹配任意長度的內(nèi)容,"_"表示匹配一個長度放入內(nèi)容 如: 查詢員工姓名中第二哥字母是M的員工信息:Select * from emp where ename LIKE '_M%';又如姓名中包含M的員工 Select * from emp where ename LIKE '%M%';18oracle中不等于有兩種表示方式"<>"和"!="19 排序用order by {asc desc}其中asc 是升序排列 如果不寫就默認按升序排列desc是按降序排列 排序語句放在sal語句的最后如: 按員工工資進行排序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é)果進行分組統(tǒng)計: 顯示每個部門的平均工資和最高工資 如:Select avg(sal),max(sal) from emp group by deptno;Having 子句用于限制分組顯示結(jié)果: 顯示平均工資大于2000的的部門號和他的平均工資?如: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)樾懽帜副硎?如: select lower('HELLO WORLD') FROM DUAL;將單詞的首字母變大寫 用 INITCAP 如: SELECT INITCAP('HELLO WORLD') FROM DUAL;2.字符串的操作Substr()截取字符串 length()字符串的長度 replace()替換字符串3數(shù)值函數(shù)四舍五入: round();截斷小數(shù)位:trunc();一.入門部分1. 創(chuàng)建表空間 create tablespace schooltbs datafile ‘D:\oracle\datasource\schooltbs.dbf’ size 10M autoextend on;2. 刪除表空間 drop tablespace schooltbs[including contents and datafiles];3. 查詢表空間基本信息 select *||tablespace_name from DBA_TABLESPACES;4. 創(chuàng)建用戶 create user lihua identified by lihua default tablespace schooltbs temporary tablespace temp;5. 更改用戶 alter user lihua identified by 123 default tablespace users;6. 鎖定用戶 alter user lihua account lock|unlock;7. 刪除用戶 drop user lihua cascade;--刪除用戶模式8. oracle數(shù)據(jù)庫中的角色 connect,dba,select_catalog_role,delete_catalog_role,execute_catalog_role,exp_full_database,imp_full_database,resource9. 授予連接服務(wù)器的角色 grant connect to lihua;10.授予使用表空間的角色 grant resource to lihua with grant option;--該用戶也有授權(quán)的權(quán)限11.授予操作表的權(quán)限 grant select,insert on user_tbl to scott;--當前用戶 grant delete,update on lihua.user_tbl to scott;--系統(tǒng)管理員12.修改表的結(jié)構(gòu)(alter)Alter table 表名 add(列的名稱,列的類型);二.SQL查詢和SQL函數(shù)1.SQl支持的命令: 數(shù)據(jù)定義語言(DDL):create,alter,drop 數(shù)據(jù)操縱語言(DML):insert,delete,update,select 數(shù)據(jù)控制語言(DCL):grant,revoke 事務(wù)控制語言(TCL):commit,savepoint,rollback2.Oracle數(shù)據(jù)類型 字符,數(shù)值,日期,RAW,LOB 字符型char:1-2000字節(jié)的定長字符 varchar2:1-4000字節(jié)的變長字符 long:2GB的變長字符 注意:一個表中最多可有一列為long型Long列不能定義唯一約束或主鍵約束long列上不能創(chuàng)建索引過程或存儲過程不能接受long類型的參數(shù)。數(shù)值型number:最高精度38位 日期時間型 date:精確到ss timestamp:秒值精確到小數(shù)點后6位函數(shù)sysdate,systimestamp返回系統(tǒng)當前日期,時間和時區(qū)。 更改時間的顯示 alter session set nls_date_language=’american’; alter session set nls_date_format=’yyyy-mm-dd’;Oracle中的偽列 像一個表列,但沒有存儲在表中偽列可以查詢,但不能插入、更新和修改它們的值 常用的偽列:rowid和rownum rowid:表中行的存儲地址,可唯一標示數(shù)據(jù)庫中的某一行,可以使用該列快速定位表中的行。 rownum:查詢返回結(jié)果集中的行的序號,可以使用它來限制查詢返回的行數(shù)。3.數(shù)據(jù)定義語言用于操作表的命令 create table alter table truncate table drop table修改表的命令 alter table stu_table rename to stu_tbl;--修改表名 alter table stu_tbl rename column stu_sex to sex;--修改列名 alter table stu_tbl add (stu_age number);--添加新列 alter table stu_tbl drop(sex);--刪除列 alter table stu_tbl modify(stu_sex varchar2(2));--更改列的數(shù)據(jù)類型 alter table stu_tbl add constraint pk_stu_tbl primary key(id);--添加約束4.數(shù)據(jù)操縱語言select,update,delete,insert 利用現(xiàn)有的表創(chuàng)建表 create table stu_tbl_log as select id,stu_name,stu_age from stu_tbl;-- 選擇無重復的行select distinct stu_name from stu_tbl;-- 插入來自其他表中的記錄 insert into stu_tbl_log select id,stu_name,stu_age from stu_tbl;5.數(shù)據(jù)控制語言 grant,revoke 6.事務(wù)控制語言 commit,savepoint,rollback 7.SQL操作符 算術(shù)操作符:L+-*/ 比較操作符:L=,!=,<>,>,<,>=,<=,between-and,in,like,is null等 邏輯操作符:Land,or,not 集合操作符:Lunion,union all,intersect,minus 連接操作符:L|| 示例中stu_tbl_log中的數(shù)據(jù)如下: ID STU_NAME STU_AGE---------- -------------------- ----------1000 李華 201001 accp 201003 nimda 3 stu_tbl中的數(shù)據(jù)如下: ID STU_NAME ST STU_AGE---------- -------------------- -- ----------1000 李華 男 201001 accp 男 201002 admin 男 30 示例: select (3+2)/2 from dual;--算術(shù)操作符,結(jié)果:2.5 select * from stu_tbl where stu_age>=20;--比較操作符 select * from stu_tbl where stu_name like '%a%';--比較操作符:like select * from stu_tbl where stu_name like 'a___';--比較操作符:like select * from stu_tbl where stu_age in(20,30);--比較操作符:in select * from stu_tbl where stu_age between 20 and 30;--比較操作符:between select stu_name from stu_tbl union all select stu_name from stu_tbl_log;--集合操作符:union all,測試結(jié)果具體如下: STU_NAME-----------李華accpadmin李華accpnimda已選擇6行。 select stu_name from stu_tbl union select stu_name from stu_tbl_log;--集合操作符:union,測試結(jié)果具體如下: STU_NAME---------accpadminnimda李華 select stu_name from stu_tbl intersect select stu_name from stu_tbl_log;--集合操作符:intersect,測試結(jié)具體如下: STU_NAME----------accp李華 select stu_name from stu_tbl minus select stu_name from stu_tbl_log;--集合操作符:minus,測試結(jié)果如下: STU_NAME----------Admin 從中可以看出:minus是獲取第一張表獨有的數(shù)據(jù) intersect是獲取兩張表中都有的數(shù)據(jù) union是整合兩張表的數(shù)據(jù),都有的只顯示一次 union all是純粹的兩張表數(shù)據(jù)整合 select id,stu_name||' '||stu_sex as name_sex,stu_age from stu_tbl;--連接操作符||,測試結(jié)果具體如下: ID NAME_SEX STU_AGE---------- ----------------------- ----------1000 李華 男 201001 accp 男 201002 admin 男 308.SQL函數(shù) 單行函數(shù):從表中查詢的每一行只返回一個值,可出現(xiàn)在select子句,where子句中日期函數(shù)數(shù)字函數(shù)字符函數(shù)轉(zhuǎn)換函數(shù):ToChar(),ToDate(),ToNumber()其他函數(shù):Nvl(exp1,exp2):表達式一為null時,返回表達式二Nvl2(exp1,exp2,exp3):表達式一為null時返回表達式三,否則返回表達式二Nullif(exp1,exp2):兩表達式相等時,返回null,否則返回表達式一 分組函數(shù):基于一組行來返回Avg,Min,Max,Sum,CountGroup by,having 分析函數(shù)Row_number,rank,dense_rank 示例: select u.user_name,sum(oi.order_num*oi.order_price) as total,row_number() over (order by sum(oi.order_num*oi.order_price) desc) as sort from order_item_tbloi,user_tbl u,order_tbl o where oi.order_id = o.id and o.user_id = u.id group by u.user_name;三.鎖和數(shù)據(jù)庫對象1.鎖:數(shù)據(jù)庫用來控制共享資源并發(fā)訪問的機制。 鎖的類型:行級鎖,表級鎖 行級鎖:對正在被修改的行進行鎖定。行級鎖也被稱之為排他鎖。 在使用下列語句時,Oracle會自動應(yīng)用行級鎖: insert,update,delete,select…… for update select……for update允許用戶一次鎖定多條記錄進行更新。 使用commit or rollback釋放鎖。 表級鎖: lock table user_tbl in mode mode; 表級鎖類型: 行共享 row share 行排他 row exclusive 共享 share 共享行排他 share row exclusive 排他 exclusive 死鎖:兩個或兩個以上的事務(wù)相互等待對方釋放資源,從而形成死鎖 2.數(shù)據(jù)庫對象 oracle數(shù)據(jù)庫對象又稱模式對象 數(shù)據(jù)庫對象是邏輯結(jié)構(gòu)的集合,最基本的數(shù)據(jù)庫對象是表 數(shù)據(jù)庫對象:表,序列,視圖,索引
序列用于生成唯一,連續(xù)序號的對象。 創(chuàng)建語法: create sequence user_id_seq start with 1000 increment by 1 maxvalue 2000 minvalue 1000 nocycle cache 1000;--指定內(nèi)存中預先分配的序號 訪問序列: select user_id_seq.currval from dual; select user_id-seq.nextval from dual;更改刪除序列: alter sequence user_id_seq maxvalue 10000;--不能修改其start with 值 drop sequence user_id_seq; 在Hibernate中訪問序列:user_id_seq視圖以經(jīng)過定制的方式顯示來自一個或多個表的數(shù)據(jù) 創(chuàng)建視圖: create or replace view user_tbl_view (vid,vname,vage) as select id,user_name,age from user_tbl [with check option]|[with read only]; 創(chuàng)建帶有錯誤的視圖: create force view user_tbl_force_view as select * from user_table;--此時user_table可以不存在 創(chuàng)建外聯(lián)接視圖: create view user_stu_view as select u.id,u.user_name,u.password,s.ddress from user_tbl u,stu_tbl s where u.s_id(+)=s.id;--哪一方帶有(+),哪一方就是次要的 刪除視圖: drop user_stu_view;索引 用于提高SQL語句執(zhí)行的性能 索引類型: 唯一索引,位圖索引,組合索引,基于函數(shù)的索引,反向鍵索引創(chuàng)建標準索引: create index user_id_index on user_tbl(id) tablespace schooltbs; 重建索引: alter index user_id_index rebuild; 刪除索引: drop index user_id_index;創(chuàng)建唯一索引: create unique index user_id_index on user_tbl(id); 創(chuàng)建組合索引: create index name_pass_index on user_tbl(user_name,password); 創(chuàng)建反向鍵索引: create index user_id_index on user_tbl(id) reverse;四.使用PL/SQL可用于創(chuàng)建存儲過程,觸發(fā)器,程序包,給SQL語句的執(zhí)行添加程序邏輯。 支持SQL,在PL/SQL中可以使用:數(shù)據(jù)操縱命令 事務(wù)控制命令 游標控制 SQL函數(shù)和SQL運算符支持面向?qū)ο缶幊?span id="ze8trgl8bvbq" class="token punctuation">(OOP)可移植性更佳的性能,PL/SQL經(jīng)過編譯執(zhí)行分為三個部分:聲明部分,可執(zhí)行部分和異常處理部分 [declare declarations] begin executable statements [exception handlers] end;打開輸出 set serverout on;--根據(jù)輸入編號獲取某學員的成績--ifdeclarescore user_tbl.score%type;beginselect score into score from user_tbl where id='&id';if score>90 thendbms_output.put_line('優(yōu)秀');elsif score>80 thendbms_output.put_line('良好');elsif score>60 thendbms_output.put_line('及格');elsedbms_output.put_line('差');end if;end;--根據(jù)學員姓名獲取某學員的成績--ifdeclarescore user_tbl.score%type;beginselect score into score from user_tbl where user_name='&name';if score>90 thendbms_output.put_line('優(yōu)秀');elsif score>80 thendbms_output.put_line('良好');elsif score>60 thendbms_output.put_line('及格');elsedbms_output.put_line('差');end if;end;--case的使用declaregrade user_tbl.grade%type;beginselect grade into grade from user_tbl where id='&id';case gradewhen '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)declarei number(4):=1;beginloopdbms_output.put_line('loop size:'||i);i:=i+1;exit when i>10;end loop;end;--while循環(huán)declarei number(4):=1;beginwhile i<=10 loopdbms_output.put_line('while loop size='||i);i:=i+1;end loop;end;--for循環(huán)declarei number(4):=1;beginfor i in 1..10 loopdbms_output.put_line('for loop Size:'||i);end loop;end;declarei number(2):=1;j number(2):=1;beginfor i in reverse 1..9 loopfor j in 1..i loopdbms_output.put(j||'x'||i||'='||j*i||' ');end loop;dbms_output.put_line('');end loop;end;--動態(tài)SQLdeclareuserId number(2);sql_str varchar2(100);userName user_tbl.user_name%type;beginexecute 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;(ordeclareid_param number:='&id_param';sql_str varchar2(100);name_param stu_tbl.stu_name%type;beginsql_str:='select stu_name from stu_tbl where id=:p';execute immediate sql_str into name_param using id_param;dbms_output.put_line(name_param);end;/)--異常處理declaregrade number(4);begingrade:='&grade';case gradewhen 1 then dbms_output.put_line('好的');--else dbms_output.put_line('不好');end case;exceptionwhen case_not_found thendbms_output.put_line('輸入類型不匹配!');end;--系統(tǒng)異常declarerowD user_tbl%rowtype;beginselect * into rowD from user_tbl;dbms_output.put_line(rowD.id||''||rowD.user_name||' '||rowD.password);exceptionwhen too_many_rows thendbms_output.put_line('不能將多行賦予一個屬性!');end;ordeclarerowD user_tbl%rowtype;beginselect * into rowD from user_tbl where id=5;dbms_output.put_line(rowD.id||' '||rowD.user_name||' '||rowD.password);exceptionwhen too_many_rows thendbms_output.put_line('不能將多行賦予一個屬性!');when no_data_found thendbms_output.put_line('沒有您要查找的數(shù)據(jù)!');end;--自定義錯誤declareinvalidError exception;category varchar2(20);begincategory:='&category';if category not in('附件','頂盤','備件') thenraise invalidError;elsedbms_output.put_line('您輸入的類別是:'||category);end if;exceptionwhen invalidError thendbms_output.put_line('無法識別的類別!');end;--引發(fā)應(yīng)用程序異常declareapp_exception exception;grade user_tbl.grade%type;beginselect grade into grade from user_tbl where id=&id;if grade='A' thenraise app_exception;elsedbms_output.put_line('查詢的等級為:'||grade);end if;exceptionwhen app_exception thenraise_application_error(-20001,'未知的等級!');end;五、游標管理游標類型:隱式游標,顯式游標,REF游標REF游標用于處理運行時才能確定的動態(tài)SQL查詢的結(jié)果==========隱式游標==========在PL/SQL中使用DML語句時自動創(chuàng)建隱式游標 隱式游標自動聲明、打開和關(guān)閉,其名為SQL隱式游標的屬性: %found SQL語句影響實質(zhì)后返回true %notfound SQL語句沒有影響實質(zhì)后返回true %rowcount SQL語句影響的行數(shù) %isopen 游標是否打開,始終為false示例:beginupdate user_tbl set score=score+5;if SQL%found thendbms_output.put_line('數(shù)據(jù)被更改: '||SQL%rowcount);elsif sql%notfound thendbms_output.put_line('沒有找到數(shù)據(jù)!');end if;if SQL%isopen thendbms_output.put_line('Open');elsedbms_output.put_line('Close');end if;end;==========顯式游標==========在PL/SQL的聲明部分定義查詢,該查詢可以返回多行J 聲明游標J 打開游標J 從游標中取回數(shù)據(jù)J 關(guān)閉游標聲明游標完成兩個任務(wù):給游標命名將一個查詢與游標關(guān)聯(lián) cursor cursor_name is select statement;打開游標:open cursor_name;取數(shù)據(jù):fetch cursor_name into record_list;關(guān)閉游標:close cursor_name;顯式游標的屬性:%found 執(zhí)行最后一條fetch語句成功返回行時為true%notfound 執(zhí)行最后一條fetch語句未能返回行時為true%rowcount 返回到目前為止游標提取的行數(shù)%isopen 游標是否打開示例:declareusers user_tbl%rowtype;cursor boys_cur is select * from user_tbl where sex='h';beginopen boys_cur;loopfetch boys_cur into users;exit when boys_cur%notfound;dbms_output.put_line(users.user_name||' '||users.password);dbms_output.put_line(boys_cur%rowcount);end loop;close boys_cur;end;帶參的顯式游標declareusers user_tbl%rowtype;cursor boys_cur(sexParam varchar2)is select * from user_tbl where sex=sexParam;beginopen boys_cur('&sex');loopfetch boys_cur into users;exit when boys_cur%notfound;dbms_output.put_line(users.user_name||' '||users.password);dbms_output.put_line(boys_cur%rowcount);end loop;close boys_cur;end;使用顯式游標更新行declarecursor user_update_cur is select sex from user_tbl for update;usersex user_tbl.sex%type;beginopen user_update_cur;loopfetch user_update_cur into usersex;exit when user_update_cur%notfound;dbms_output.put_line(usersex);if usersex = 'M' thenupdate user_tbl set score=score-5 where current of user_update_cur;elseupdate user_tbl set score=score+5 where current of user_update_cur;end if;end loop;close user_update_cur;commit;end;循環(huán)游標declarecursor user_cur is select * from user_tbl;beginfor username in user_cur loopdbms_output.put_line(username.user_name||' '||username.sex);end loop;end;==========REF游標==========REF游標和游標變量用于處理運行時動態(tài)執(zhí)行的SQL查詢創(chuàng)建游標變量的步驟:J 聲明REF游標類型J 聲明REF游標類型的變量聲明類型的語法Type ref_cursor_name is ref cursor [return return_type];打開游標變量的語法Open cursor_name for select_statement;----聲明強類型的游標declaretype ref_cur is ref cursor return user_tbl%rowtype;users_cur ref_cur;----聲明弱類型的游標declaretype ref_cur is ref cursor;users_cur ref_cur;示例----強類型declaretype ref_cur is ref cursor return user_tbl%rowtype;users_cur ref_cur;users user_tbl%rowtype;beginopen users_cur for select * from user_tbl where user_name='ny2t92';loopfetch users_cur into users;exit when users_cur%notfound;dbms_output.put_line(users.user_Name);end loop;close users_cur;end;----弱類型declaretype ref_cur is ref cursor;my_cur ref_cur;users user_tbl%rowtype;stus stu_tbl%rowtype;beginopen my_cur for select * from user_tbl;loopfetch my_cur into users;exit when my_cur%notfound;dbms_output.put_line(users.user_Name);end loop;close my_cur;open my_cur for select * from user_tbl where user_name='ny2t92';loopfetch my_cur into users;exit when my_cur%notfound;dbms_output.put_line(users.user_Name);end loop;close my_cur;open my_cur for select * from stu_tbl;loopfetch 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游標declaretype ref_cur is ref cursor;my_cur ref_cur;users user_tbl%rowtype;username varchar2(20);sqlstmt varchar2(200);beginusername:='&username';sqlstmt := 'select * from user_tbl where user_name= :name';open my_cur for sqlstmt using username;loopfetch my_cur into users;exit when my_cur%notfound;dbms_output.put_line(users.user_Name);end loop;close my_cur;end;六.子程序子程序分為:存儲過程和函數(shù),它是命名的PL/SQL塊,編譯并存儲在數(shù)據(jù)庫中。子程序的各個部分:聲明部分,可執(zhí)行部分,異常處理部分。過程----執(zhí)行某些操作函數(shù)----執(zhí)行操作并返回值==========存儲過程==========創(chuàng)建過程的語法:create or replace procedureproce_name (parameter_list)is|aslocal variable declarationbeginexecutable statementsexceptionexception_handlersend proce_name;過程參數(shù)的三種模式:In----用于接收調(diào)用的值,默認的參數(shù)模式Out----用于向調(diào)用程序返回值In out----用于接收調(diào)用程序的值,并向調(diào)用程序返回更新的值執(zhí)行過程的語法:Execute proce_name(parameter_list);或DeclareVariable var_list;BeginProce_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 functionFun_name (parameter_list)Return datatype is|asLocal declarationsBeginExecutable statements;Return result;ExceptionExce_handlers;End;函數(shù)只能接收in參數(shù),不能接受out或in out參數(shù),形參不能是PL/SQL類型函數(shù)的返回類型也必須是數(shù)據(jù)庫類型訪問函數(shù)的方式:J 使用PL/SQL塊J 使用SQL語句Select fun_name(parameter_list) from dual;
總結(jié)
以上是生活随笔為你收集整理的oracle sql语句大全的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【基于注解方式】Spring整合Kafk
- 下一篇: -bash: lsof: 未找到命令