SlideShare a Scribd company logo
1 of 9
Procedures and Functions
Function and Procedure
Parameter Types
 Named PL/SQL programs (Procedures and Functions) can take
parameters. Parameters are optional on both procedures and
functions.
 Keep the parameter name under 30 characters, they must start
with a letter and contain no spaces.
 There are 3 types of parameter-
 IN, OUT and IN OUT
2
Function and Procedure
Parameter Types Cont…
 An IN parameter is used as an input only. An IN parameter
cannot be changed by the called program.
 An OUT parameter is initially NULL. The program assigns the
parameter a value and that value is returned to the calling
program.
 An IN OUT parameter may or may not have an initial value. That
initial value may or may not be modified by the called program.
Any changes made to the parameter are returned to the calling
program.
3
Function and Procedure
Parameter Types Cont…
 Parameters are declared with data types but without data type
length or precision.
 A parameter may be declared as VARCHAR2 but it will not be
declared with a length component (VARCHAR2(30) would not
be valid).
 Parameters may also be assigned a default value.
 You can either use the assignment operator (:=) or use the
DEFAULT keyword. When a parameter has a default value, you
do not need to include that parameter in the call.
4
Sample Parameter Declarations
 ( parameter_1 IN VARCHAR2 := 'ABC',
 parameter_2 IN VARCHAR2 DEFAULT 'ABC',
 parameter_3 IN OUT NUMBER,
parameters_can_be_named_anything OUT DATE )
5
Procedure Example
 CREATE OR REPLACE PROCEDURE my_first_proc (p_name IN
VARCHAR2 := 'Lewis', p_address IN VARCHAR2 := '123
Mockingbird Ln', p_an_in_out_parameter IN OUT NUMBER,
p_an_out_parameter OUT DATE ) IS v_a_variable
VARCHAR2(30);
BEGIN
IF p_name = 'Lewis' THEN
DBMS_OUTPUT.PUT_LINE( p_name || ': ' || p_address );
END IF;
v_a_variable := 99;
p_an_in_out_parameter := v_a_variable; p_an_out_parameter :=
SYSDATE;
END;
6
Function Example
 CREATE OR REPLACE FUNCTION my_first_func (p_name IN
VARCHAR2 := 'Lewis', p_address IN VARCHAR2 := '123
Mockingbird Ln', p_an_in_out_parameter IN OUT NUMBER,
p_an_out_parameter OUT DATE ) RETURN VARCHAR2 IS
v_a_variable VARCHAR2(30);
BEGIN
IF p_name = 'Lewis' THEN
RETURN -1;
END IF;
v_a_variable := 99;
p_an_in_out_parameter := v_a_variable;
p_an_out_parameter := SYSDATE;
RETURN v_a_variable;
END;
7
Procedures VS Functions
 Procedures are traditionally the workhorse of the coding world.
 Functions are traditionally the smaller, more specific pieces of
code.
 In general, if you need to update the chart of accounts, you would
write a procedure.
 If you need to retrieve the organization code for a particular GL
account, you would write a function.
 A Procedure cannot return a value but a Function MUST return a
value.
8
Procedures VS Functions Cont…
 The return statement in a function returns control to the calling
program and returns the results of the function.
 The return statement of a procedure returns control to the calling
program and cannot return a value.
 Functions can be called from SQL, Procedure cannot.
 Functions are considered expressions, Procedure are not.
 Procedures and functions can both return data in OUT and IN
OUT parameters.
9

More Related Content

What's hot

Oracle - Program with PL/SQL - Lession 13
Oracle - Program with PL/SQL - Lession 13Oracle - Program with PL/SQL - Lession 13
Oracle - Program with PL/SQL - Lession 13Thuan Nguyen
 
Oracle - Program with PL/SQL - Lession 14
Oracle - Program with PL/SQL - Lession 14Oracle - Program with PL/SQL - Lession 14
Oracle - Program with PL/SQL - Lession 14Thuan Nguyen
 
Oracle - Program with PL/SQL - Lession 08
Oracle - Program with PL/SQL - Lession 08Oracle - Program with PL/SQL - Lession 08
Oracle - Program with PL/SQL - Lession 08Thuan Nguyen
 
Oracle - Program with PL/SQL - Lession 16
Oracle - Program with PL/SQL - Lession 16Oracle - Program with PL/SQL - Lession 16
Oracle - Program with PL/SQL - Lession 16Thuan Nguyen
 
Oracle - Program with PL/SQL - Lession 02
Oracle - Program with PL/SQL - Lession 02Oracle - Program with PL/SQL - Lession 02
Oracle - Program with PL/SQL - Lession 02Thuan Nguyen
 
Procedure and Functions in pl/sql
Procedure and Functions in pl/sqlProcedure and Functions in pl/sql
Procedure and Functions in pl/sqlÑirmal Tatiwal
 
Functions oracle (pl/sql)
Functions oracle (pl/sql)Functions oracle (pl/sql)
Functions oracle (pl/sql)harman kaur
 
Oracle - Program with PL/SQL - Lession 11
Oracle - Program with PL/SQL - Lession 11Oracle - Program with PL/SQL - Lession 11
Oracle - Program with PL/SQL - Lession 11Thuan Nguyen
 
Oracle - Program with PL/SQL - Lession 18
Oracle - Program with PL/SQL - Lession 18Oracle - Program with PL/SQL - Lession 18
Oracle - Program with PL/SQL - Lession 18Thuan Nguyen
 
Triggers
TriggersTriggers
Triggerswork
 
c++ programming Unit 4 operators
c++ programming Unit 4 operatorsc++ programming Unit 4 operators
c++ programming Unit 4 operatorsAAKASH KUMAR
 
Programming in Oracle with PL/SQL
Programming in Oracle with PL/SQLProgramming in Oracle with PL/SQL
Programming in Oracle with PL/SQLlubna19
 
Formula Profile: Define Default Values for Input Parameters
Formula Profile: Define Default Values for Input ParametersFormula Profile: Define Default Values for Input Parameters
Formula Profile: Define Default Values for Input ParametersRakesh Dasgupta
 
Oracle - Program with PL/SQL - Lession 12
Oracle - Program with PL/SQL - Lession 12Oracle - Program with PL/SQL - Lession 12
Oracle - Program with PL/SQL - Lession 12Thuan Nguyen
 

What's hot (20)

Procedure n functions
Procedure n functionsProcedure n functions
Procedure n functions
 
Oracle - Program with PL/SQL - Lession 13
Oracle - Program with PL/SQL - Lession 13Oracle - Program with PL/SQL - Lession 13
Oracle - Program with PL/SQL - Lession 13
 
Oracle - Program with PL/SQL - Lession 14
Oracle - Program with PL/SQL - Lession 14Oracle - Program with PL/SQL - Lession 14
Oracle - Program with PL/SQL - Lession 14
 
Function and types
Function  and typesFunction  and types
Function and types
 
Oracle - Program with PL/SQL - Lession 08
Oracle - Program with PL/SQL - Lession 08Oracle - Program with PL/SQL - Lession 08
Oracle - Program with PL/SQL - Lession 08
 
Oracle - Program with PL/SQL - Lession 16
Oracle - Program with PL/SQL - Lession 16Oracle - Program with PL/SQL - Lession 16
Oracle - Program with PL/SQL - Lession 16
 
Oracle - Program with PL/SQL - Lession 02
Oracle - Program with PL/SQL - Lession 02Oracle - Program with PL/SQL - Lession 02
Oracle - Program with PL/SQL - Lession 02
 
Ch3 selection
Ch3 selectionCh3 selection
Ch3 selection
 
Procedure and Functions in pl/sql
Procedure and Functions in pl/sqlProcedure and Functions in pl/sql
Procedure and Functions in pl/sql
 
Functions oracle (pl/sql)
Functions oracle (pl/sql)Functions oracle (pl/sql)
Functions oracle (pl/sql)
 
Oracle - Program with PL/SQL - Lession 11
Oracle - Program with PL/SQL - Lession 11Oracle - Program with PL/SQL - Lession 11
Oracle - Program with PL/SQL - Lession 11
 
Oracle - Program with PL/SQL - Lession 18
Oracle - Program with PL/SQL - Lession 18Oracle - Program with PL/SQL - Lession 18
Oracle - Program with PL/SQL - Lession 18
 
Clauses in sql server
Clauses in sql serverClauses in sql server
Clauses in sql server
 
Triggers
TriggersTriggers
Triggers
 
c++ programming Unit 4 operators
c++ programming Unit 4 operatorsc++ programming Unit 4 operators
c++ programming Unit 4 operators
 
PLSQL Cursors
PLSQL CursorsPLSQL Cursors
PLSQL Cursors
 
Programming in Oracle with PL/SQL
Programming in Oracle with PL/SQLProgramming in Oracle with PL/SQL
Programming in Oracle with PL/SQL
 
Oracle: Functions
Oracle: FunctionsOracle: Functions
Oracle: Functions
 
Formula Profile: Define Default Values for Input Parameters
Formula Profile: Define Default Values for Input ParametersFormula Profile: Define Default Values for Input Parameters
Formula Profile: Define Default Values for Input Parameters
 
Oracle - Program with PL/SQL - Lession 12
Oracle - Program with PL/SQL - Lession 12Oracle - Program with PL/SQL - Lession 12
Oracle - Program with PL/SQL - Lession 12
 

Viewers also liked

【資料】ハンズオンセミナー①クイックスタート
【資料】ハンズオンセミナー①クイックスタート【資料】ハンズオンセミナー①クイックスタート
【資料】ハンズオンセミナー①クイックスタートnatsumo
 
Stress management
Stress management Stress management
Stress management AJAY MALLA
 
Human Resource Management as a Strategic Business Partner
Human Resource Management as a Strategic Business PartnerHuman Resource Management as a Strategic Business Partner
Human Resource Management as a Strategic Business PartnerPhilip Portelance
 
Short-term joint staff training event - Erasmus+ - 13th Highschool of Kallith...
Short-term joint staff training event - Erasmus+ - 13th Highschool of Kallith...Short-term joint staff training event - Erasmus+ - 13th Highschool of Kallith...
Short-term joint staff training event - Erasmus+ - 13th Highschool of Kallith...Zoi Moniou (zoi9617)
 
Circulos de calidad capacitacion fr-cal-ing-03 pp2
Circulos de calidad  capacitacion fr-cal-ing-03 pp2Circulos de calidad  capacitacion fr-cal-ing-03 pp2
Circulos de calidad capacitacion fr-cal-ing-03 pp2alexanderco3422
 
【IoT入門】スマホで加速度と位置情報を取得してクラウドに保存しよう!~ハンズオン資料②~
【IoT入門】スマホで加速度と位置情報を取得してクラウドに保存しよう!~ハンズオン資料②~【IoT入門】スマホで加速度と位置情報を取得してクラウドに保存しよう!~ハンズオン資料②~
【IoT入門】スマホで加速度と位置情報を取得してクラウドに保存しよう!~ハンズオン資料②~natsumo
 
Cuadro explicativo miguelparra
Cuadro explicativo miguelparraCuadro explicativo miguelparra
Cuadro explicativo miguelparramiguelparra77
 

Viewers also liked (10)

【資料】ハンズオンセミナー①クイックスタート
【資料】ハンズオンセミナー①クイックスタート【資料】ハンズオンセミナー①クイックスタート
【資料】ハンズオンセミナー①クイックスタート
 
LA QUÍMICA -Yourprezi
LA QUÍMICA -YourpreziLA QUÍMICA -Yourprezi
LA QUÍMICA -Yourprezi
 
Session 12 Kenneth Alston
Session 12 Kenneth AlstonSession 12 Kenneth Alston
Session 12 Kenneth Alston
 
Stress management
Stress management Stress management
Stress management
 
Cap 9
Cap 9Cap 9
Cap 9
 
Human Resource Management as a Strategic Business Partner
Human Resource Management as a Strategic Business PartnerHuman Resource Management as a Strategic Business Partner
Human Resource Management as a Strategic Business Partner
 
Short-term joint staff training event - Erasmus+ - 13th Highschool of Kallith...
Short-term joint staff training event - Erasmus+ - 13th Highschool of Kallith...Short-term joint staff training event - Erasmus+ - 13th Highschool of Kallith...
Short-term joint staff training event - Erasmus+ - 13th Highschool of Kallith...
 
Circulos de calidad capacitacion fr-cal-ing-03 pp2
Circulos de calidad  capacitacion fr-cal-ing-03 pp2Circulos de calidad  capacitacion fr-cal-ing-03 pp2
Circulos de calidad capacitacion fr-cal-ing-03 pp2
 
【IoT入門】スマホで加速度と位置情報を取得してクラウドに保存しよう!~ハンズオン資料②~
【IoT入門】スマホで加速度と位置情報を取得してクラウドに保存しよう!~ハンズオン資料②~【IoT入門】スマホで加速度と位置情報を取得してクラウドに保存しよう!~ハンズオン資料②~
【IoT入門】スマホで加速度と位置情報を取得してクラウドに保存しよう!~ハンズオン資料②~
 
Cuadro explicativo miguelparra
Cuadro explicativo miguelparraCuadro explicativo miguelparra
Cuadro explicativo miguelparra
 

Similar to Functions

9. DBMS Experiment Laboratory PresentationPPT
9. DBMS Experiment Laboratory PresentationPPT9. DBMS Experiment Laboratory PresentationPPT
9. DBMS Experiment Laboratory PresentationPPTTheVerse1
 
Open Gurukul Language PL/SQL
Open Gurukul Language PL/SQLOpen Gurukul Language PL/SQL
Open Gurukul Language PL/SQLOpen Gurukul
 
Part36 parameter,form success
Part36 parameter,form successPart36 parameter,form success
Part36 parameter,form successGirija Muscut
 
pl/sql Procedure
pl/sql Procedurepl/sql Procedure
pl/sql ProcedurePooja Dixit
 
EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...
EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...
EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...vekariyakashyap
 
E2 – Fundamentals, Functions & ArraysPlease refer to announcements.docx
E2 – Fundamentals, Functions & ArraysPlease refer to announcements.docxE2 – Fundamentals, Functions & ArraysPlease refer to announcements.docx
E2 – Fundamentals, Functions & ArraysPlease refer to announcements.docxshandicollingwood
 
Plsql coding conventions
Plsql coding conventionsPlsql coding conventions
Plsql coding conventionsFang Yu
 

Similar to Functions (20)

9. DBMS Experiment Laboratory PresentationPPT
9. DBMS Experiment Laboratory PresentationPPT9. DBMS Experiment Laboratory PresentationPPT
9. DBMS Experiment Laboratory PresentationPPT
 
Open Gurukul Language PL/SQL
Open Gurukul Language PL/SQLOpen Gurukul Language PL/SQL
Open Gurukul Language PL/SQL
 
Part36 parameter,form success
Part36 parameter,form successPart36 parameter,form success
Part36 parameter,form success
 
pl/sql Procedure
pl/sql Procedurepl/sql Procedure
pl/sql Procedure
 
SQL Procedures & Functions
SQL Procedures & FunctionsSQL Procedures & Functions
SQL Procedures & Functions
 
Methods in Java
Methods in JavaMethods in Java
Methods in Java
 
Subprogramms
SubprogrammsSubprogramms
Subprogramms
 
PL_SQL - II.pptx
PL_SQL - II.pptxPL_SQL - II.pptx
PL_SQL - II.pptx
 
Functions in C.pptx
Functions in C.pptxFunctions in C.pptx
Functions in C.pptx
 
Programming-in-C
Programming-in-CProgramming-in-C
Programming-in-C
 
Functions
FunctionsFunctions
Functions
 
Trig
TrigTrig
Trig
 
Programming in C
Programming in CProgramming in C
Programming in C
 
Module04
Module04Module04
Module04
 
Stored procedures
Stored proceduresStored procedures
Stored procedures
 
EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...
EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...
EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...
 
Array Cont
Array ContArray Cont
Array Cont
 
Function C programming
Function C programmingFunction C programming
Function C programming
 
E2 – Fundamentals, Functions & ArraysPlease refer to announcements.docx
E2 – Fundamentals, Functions & ArraysPlease refer to announcements.docxE2 – Fundamentals, Functions & ArraysPlease refer to announcements.docx
E2 – Fundamentals, Functions & ArraysPlease refer to announcements.docx
 
Plsql coding conventions
Plsql coding conventionsPlsql coding conventions
Plsql coding conventions
 

Recently uploaded

Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Zeeman Effect normal and Anomalous zeeman effect
Zeeman Effect normal and Anomalous zeeman effectZeeman Effect normal and Anomalous zeeman effect
Zeeman Effect normal and Anomalous zeeman effectPriyanshuRawat56
 
Employee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchEmployee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchSoham Mondal
 
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证obuhobo
 
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...Suhani Kapoor
 
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackVIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackSuhani Kapoor
 
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfExperience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfSoham Mondal
 
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home MadeDubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Madekojalkojal131
 
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service CuttackLow Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service CuttackSuhani Kapoor
 
Production Day 1.pptxjvjbvbcbcb bj bvcbj
Production Day 1.pptxjvjbvbcbcb bj bvcbjProduction Day 1.pptxjvjbvbcbcb bj bvcbj
Production Day 1.pptxjvjbvbcbcb bj bvcbjLewisJB
 
Final Completion Certificate of Marketing Management Internship
Final Completion Certificate of Marketing Management InternshipFinal Completion Certificate of Marketing Management Internship
Final Completion Certificate of Marketing Management InternshipSoham Mondal
 
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call GirlsDelhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girlsshivangimorya083
 
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiVIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...poojakaurpk09
 
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Niya Khan
 
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...Suhani Kapoor
 
CALL ON ➥8923113531 🔝Call Girls Nishatganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Nishatganj Lucknow best sexual serviceCALL ON ➥8923113531 🔝Call Girls Nishatganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Nishatganj Lucknow best sexual serviceanilsa9823
 
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls DubaiDark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls Dubaikojalkojal131
 
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...Suhani Kapoor
 

Recently uploaded (20)

Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Zeeman Effect normal and Anomalous zeeman effect
Zeeman Effect normal and Anomalous zeeman effectZeeman Effect normal and Anomalous zeeman effect
Zeeman Effect normal and Anomalous zeeman effect
 
Employee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchEmployee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India Research
 
Call Girls In Prashant Vihar꧁❤ 🔝 9953056974🔝❤꧂ Escort ServiCe
Call Girls In Prashant Vihar꧁❤ 🔝 9953056974🔝❤꧂ Escort ServiCeCall Girls In Prashant Vihar꧁❤ 🔝 9953056974🔝❤꧂ Escort ServiCe
Call Girls In Prashant Vihar꧁❤ 🔝 9953056974🔝❤꧂ Escort ServiCe
 
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
 
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
 
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackVIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
 
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfExperience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
 
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home MadeDubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
 
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service CuttackLow Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
 
Production Day 1.pptxjvjbvbcbcb bj bvcbj
Production Day 1.pptxjvjbvbcbcb bj bvcbjProduction Day 1.pptxjvjbvbcbcb bj bvcbj
Production Day 1.pptxjvjbvbcbcb bj bvcbj
 
Final Completion Certificate of Marketing Management Internship
Final Completion Certificate of Marketing Management InternshipFinal Completion Certificate of Marketing Management Internship
Final Completion Certificate of Marketing Management Internship
 
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call GirlsDelhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
 
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiVIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
 
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
 
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
 
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
 
CALL ON ➥8923113531 🔝Call Girls Nishatganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Nishatganj Lucknow best sexual serviceCALL ON ➥8923113531 🔝Call Girls Nishatganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Nishatganj Lucknow best sexual service
 
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls DubaiDark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
 
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
 

Functions

  • 2. Function and Procedure Parameter Types  Named PL/SQL programs (Procedures and Functions) can take parameters. Parameters are optional on both procedures and functions.  Keep the parameter name under 30 characters, they must start with a letter and contain no spaces.  There are 3 types of parameter-  IN, OUT and IN OUT 2
  • 3. Function and Procedure Parameter Types Cont…  An IN parameter is used as an input only. An IN parameter cannot be changed by the called program.  An OUT parameter is initially NULL. The program assigns the parameter a value and that value is returned to the calling program.  An IN OUT parameter may or may not have an initial value. That initial value may or may not be modified by the called program. Any changes made to the parameter are returned to the calling program. 3
  • 4. Function and Procedure Parameter Types Cont…  Parameters are declared with data types but without data type length or precision.  A parameter may be declared as VARCHAR2 but it will not be declared with a length component (VARCHAR2(30) would not be valid).  Parameters may also be assigned a default value.  You can either use the assignment operator (:=) or use the DEFAULT keyword. When a parameter has a default value, you do not need to include that parameter in the call. 4
  • 5. Sample Parameter Declarations  ( parameter_1 IN VARCHAR2 := 'ABC',  parameter_2 IN VARCHAR2 DEFAULT 'ABC',  parameter_3 IN OUT NUMBER, parameters_can_be_named_anything OUT DATE ) 5
  • 6. Procedure Example  CREATE OR REPLACE PROCEDURE my_first_proc (p_name IN VARCHAR2 := 'Lewis', p_address IN VARCHAR2 := '123 Mockingbird Ln', p_an_in_out_parameter IN OUT NUMBER, p_an_out_parameter OUT DATE ) IS v_a_variable VARCHAR2(30); BEGIN IF p_name = 'Lewis' THEN DBMS_OUTPUT.PUT_LINE( p_name || ': ' || p_address ); END IF; v_a_variable := 99; p_an_in_out_parameter := v_a_variable; p_an_out_parameter := SYSDATE; END; 6
  • 7. Function Example  CREATE OR REPLACE FUNCTION my_first_func (p_name IN VARCHAR2 := 'Lewis', p_address IN VARCHAR2 := '123 Mockingbird Ln', p_an_in_out_parameter IN OUT NUMBER, p_an_out_parameter OUT DATE ) RETURN VARCHAR2 IS v_a_variable VARCHAR2(30); BEGIN IF p_name = 'Lewis' THEN RETURN -1; END IF; v_a_variable := 99; p_an_in_out_parameter := v_a_variable; p_an_out_parameter := SYSDATE; RETURN v_a_variable; END; 7
  • 8. Procedures VS Functions  Procedures are traditionally the workhorse of the coding world.  Functions are traditionally the smaller, more specific pieces of code.  In general, if you need to update the chart of accounts, you would write a procedure.  If you need to retrieve the organization code for a particular GL account, you would write a function.  A Procedure cannot return a value but a Function MUST return a value. 8
  • 9. Procedures VS Functions Cont…  The return statement in a function returns control to the calling program and returns the results of the function.  The return statement of a procedure returns control to the calling program and cannot return a value.  Functions can be called from SQL, Procedure cannot.  Functions are considered expressions, Procedure are not.  Procedures and functions can both return data in OUT and IN OUT parameters. 9