第一次接觸Oracle預存程序

來源:互聯網
上載者:User

標籤:oracle 預存程序

CREATE TABLE STUDENT(
    ID NUMBER(10)  NOT NULL ,
    NAME VARCHAR2(10) ,
    SEX CHAR(1),
    AGE Number(3),
    CREATIONDATE  DATE,
    MODIFIEDDATE DATE,
    PRIMARY KEY (ID));
    
 --查詢資料
select * from student;



 --插入資料
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107001,‘Liu‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107002,‘Jack‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107003,‘Robin‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107004,‘Fuck‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107005,‘Duck‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107006,‘God‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107007,‘Dog‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107008,‘Bike‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107009,‘Ella‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107010,‘Make‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107011,‘Cela‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107012,‘MeLe‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107013,‘LooK‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107014,‘Jack‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107015,‘EKK‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));
insert into student(id,name,sex,age,creationdate,modifieddate)
values(7023107016,‘Jack‘,‘B‘,19,to_date(‘20160322‘,‘YYMMDD‘),to_date(‘20160322‘,‘YYMMDD‘));

select * from user_procedures where PROCEDURE_NAME=‘PRO_STUDENT‘;  

--預存程序例子(計算學生總人數)

    CREATE OR REPLACE PROCEDURE PRO_STUDENT   
    AS  
    S_TOTAL NUMBER(10);   
    BEGIN  
     SELECT COUNT(*) INTO S_TOTAL FROM STUDENT;   
     DBMS_OUTPUT.PUT_LINE(‘學生人數:‘||S_TOTAL);   
    END;  
    
    EXECUTE PRO_STUDENT;  

--統計女孩人數(帶輸入參數)
     --注意變數定義不能與表中變數相同
    CREATE OR REPLACE PROCEDURE PRO_GIRL_STUDENT(student_sex in CHAR)   
    AS  
    S_TOTAL NUMBER(10);   
    BEGIN  
     SELECT COUNT(*) INTO S_TOTAL FROM STUDENT s WHERE s.sex=student_sex;   
     DBMS_OUTPUT.PUT_LINE(‘學生人數:‘||S_TOTAL);   
    END;  
    
    EXECUTE PRO_STUDENT;  
   

第一次接觸Oracle預存程序

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.