




版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
1、*存儲過程* SQLServer中的過程:無直接返回至(沒有用returnreturn語句返回執(zhí)行狀態(tài)存儲過程分類:系統(tǒng)存儲過程,存于master數(shù)據(jù)庫,以sp_開頭。擴展存儲過程,動態(tài)加載和執(zhí)行動態(tài)鏈接數(shù)據(jù)庫DLL,以xp_開頭。臨時存儲過程,以#(局部,#(全局開頭,SQLServer連接關閉后,自動刪除。自定義存儲過程(1語法:create procedure 存儲過程名參數(shù)聲明as 執(zhí)行語句練習1:創(chuàng)建一個存儲過程實現(xiàn)兩個數(shù)相加。create procedure sp_add num1 int,num2 int,sum int outputas select sum=num1+num2
2、;(2查詢存儲過程:exec sp_helptext 'sp_add'exec:表示執(zhí)行。sp_helptext:存儲過程,屬于系統(tǒng)存儲過程,以sp_開頭(3執(zhí)行存儲過程:declare number1 int,number2 int,result int;select number1=100,number2=200;exec sp_add number1,number2,result output;select result;(4修改存儲過程:alter procedure sp_add num1 int,num2 int,sum int outputas select su
3、m=num1+num2+sum;declare number1 int,number2 int,result int;select number1=100,number2=200,result=1;exec sp_add number1,number2,result output;select result;(5刪除存儲過程:drop procedure sp_add;*自定義函數(shù)* 系統(tǒng)自帶函數(shù):數(shù)字型、字符型、日期型。自定義函數(shù):(1語法:create function 函數(shù)名參數(shù)聲明returns 返回數(shù)據(jù)類型begin 語句return 返回值end練習2:實現(xiàn)兩個數(shù)相加的函數(shù)。cre
4、ate function func_add (num1 int,num2 int returns intbegin return num1+num2; end【自定義函數(shù)與存儲過程定義的區(qū)別】參數(shù)要用(括起來有returns 語句,聲明返回數(shù)據(jù)類型函數(shù)實現(xiàn)代碼要用begin end必須有return 返回函數(shù)值(2查詢函數(shù):exec sp_helptext 'func_add'(3執(zhí)行函數(shù):select 用戶賬號名.函數(shù)名(實參select dbo.func_add(10,20;(4修改函數(shù):alter function func_add (num1 int,num2 int
5、returns intbegin return (num1+num2*2; endselect dbo.func_add(10,20;(5刪除函數(shù):drop function func_add;練習3:創(chuàng)建一個普通的用戶myuser。創(chuàng)建一個數(shù)據(jù)庫mydb;create database mydbon (name=mydb_dat,filename='G:mydb_dat.mdf',size=2MBlog on(name=mydb_log,filename='G:mydb_log.ldf',size=2MB;創(chuàng)建一個登錄賬號,賬號名為test,密碼為123,默認
6、數(shù)據(jù)庫為mydb;exec sp_addlogin 'test','123','mydb'為數(shù)據(jù)庫mydb創(chuàng)建一個用戶賬號myuser,對應的登錄賬號是test;use mydb;exec sp_grantdbaccess 'test','myuser'向用戶myuser授權grant create table to myuser;grant create procedure to myuser;grant create function to myuser;以test用戶登錄并創(chuàng)建存儲過程和自定義函數(shù)create
7、 procedure sp_add num1 int,num2 int,sum int outputas select sum=num1+num2;declare number1 int,number2 int,result int;select number1=100,number2=200;exec sp_add number1,number2,result output;select result;create function func_add (num1 int,num2 int returns intbegin return num1+num2; endselect myuser.
8、func_add(10,20;drop procedure sp_add;drop function func_add;刪除用戶賬號myuserexec sp_revokedbaccess 'myuser'*觸發(fā)器* 存儲過程和函數(shù)需要主動調(diào)用才能執(zhí)行,觸發(fā)器是根據(jù)事件自動觸發(fā)執(zhí)行(1語法:create trigger 觸發(fā)器名on 表名|視圖名for |after |instead of insert,delete,updateas 執(zhí)行語句說明:for默認情況下是after,instead of多用于視圖練習4:跟蹤數(shù)據(jù)修改變化?!緄nsert:inserted表updat
9、e:deleted表,記錄的是舊數(shù)據(jù);inserted表,記錄的使修改后的數(shù)據(jù)delete:deleted表】create table emp(name varchar(20,salary int;insert into emp values('wonderful',100;insert into emp values('perfect',200;create table emplog(log1 varchar(7000;create trigger emp_terig on emp for updateas begindeclare old int,new i
10、nt,log varchar(500,name varchar(20;select old =salary from deleted ;select name=name from inserted;select new=salary from inserted;if(new/old>=10 or (new/old<=0.1begin select log=name+'修改前工資:'+str(old+'修改后工資:'+str(new;insert into emplog values(log; endendupdate emp set salary=1
11、0000 where name='wonderful' select * from emplog;update emp set salary=400 where name='perfect' select * from emplog;update emp set salary=20 where name='perfect' select * from emplog;練習5:向基于多表的視圖插入數(shù)據(jù)。create table student(name varchar(20,age int,deptid int;create table dept(d
12、eptid int,name varchar(20;create view stu_dept as select as stuname,s.age as stuage,s.deptid , as deptname from student s inner join dept d on s.deptid=d.deptidselect * from stu_dept;insert into stu_dept values('wonderful',20,1,'計算機工程學院' (×create trigger stu_dept_trig on stu_dept instead of insertas begindeclare stuname varchar(20,stuage int,deptid int,deptname varchar(20;selectstuname=stuname,stuage=stuage,deptid=deptid,deptname=deptname from inserted insert into student values (s
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 親子園新年親子活動方案
- 親子探園活動方案
- 2025至2030一次性餐具市場產(chǎn)業(yè)運行態(tài)勢及投資規(guī)劃深度研究報告
- 親子植物活動方案
- 親子活動棒球活動方案
- 人企服務開放日活動方案
- 人力培訓沙龍活動方案
- 人才創(chuàng)業(yè)活動方案
- 南京師范大學《抖音短視頻創(chuàng)作與直播》2023-2024學年第二學期期末試卷
- 海南職業(yè)技術學院《應用寫作》2023-2024學年第二學期期末試卷
- 納米技術在靶向藥物delivery中的創(chuàng)新應用-洞察闡釋
- 2025-2030中國反芻飼料行業(yè)市場現(xiàn)狀分析及競爭格局與投資發(fā)展研究報告
- 四川省綿陽市三臺縣2023-2024學年八年級下學期語文期末試卷(含答案)
- 第四版(2025)國際壓力性損傷潰瘍預防和治療臨床指南解讀
- 多重耐藥菌病人的處理流程
- 《常見性病防治知識》課件
- 廣東省深圳市2025年中考模擬歷史試題四套附參考答案
- 2025年安全生產(chǎn)月主題宣貫課件
- 2025年中考英語熱點話題寫作《AI、deepseek、豆包》
- 2025年果蔬清洗機市場分析現(xiàn)狀
- 太陽能光伏發(fā)電系統(tǒng)多目標容量優(yōu)化配置技術研究
評論
0/150
提交評論