250 likes | 380 Views
Introduction to PL/SQL . CIS 310 Spring, 2012. What is PL/SQL . Procedural Language SQL Transaction Processing Language Uses Program Blocks Similar to COBOL Syntax similar to VB and to JAVA Provides Control Structures IF logic, Looping, etc.
E N D
Introduction to PL/SQL CIS 310 Spring, 2012
What is PL/SQL • Procedural Language SQL • Transaction Processing Language • Uses Program Blocks • Similar to COBOL • Syntax similar to VB and to JAVA • Provides Control Structures • IF logic, Looping, etc. • Used to Build: Functions, Triggers & Procedures • Limited I/O Support – Utility Focus
PL/SQL Structure Functions & Procedures • Header CREATE OR REPLACE _____ . . . • Contains parameter specifications, Return type if a function • IS – Optional Section – Contains • Declarations of: temporary variables BEGIN -- Mandatory • Executable block, Contains • SQL statements • SELECT . . . INTO, INSERT, UPDATE, DELETE • PL/SQL Statements • Assignment statements, IF statements, • RETURN statement for functions • END; -- Mandatory
DECLARE (IS) SECTION • Contains definitions (variable name & data type) for any temporary variables needed while processing the PL/SQL block) • Standard Oracle data types plus • Ability to map a temporary variable to the data type of a database table column.
Variable Declarations • Form is variable_namedata_type(length); t_prod_Descr varchar2(20); t_date date; t_unit_price number (6,2); t_total number (5) := 0;
Reference Data Types • Used to declare a temporary variable that References a database column • Takes on the data type of that column • Format is: Variable_nameDB_Table_Name.Column_Name:%TYPE; • For Example: t_qty_orditem_Sold.item_qty_ord%type; t_Prod_descrPRODUCT.Prod_Descrip%TYPE;
Executable Section(After the BEGIN Keyword) • Statements in this section are much like the code of a programming language function or procedure • Can contain • Assignment statements • Conditional logic (IF statements) • Loop structures (not covered in this class)
Assignment Statements • Assignment operator: := • Variable being assigned to a new value is on left side of assignment operator • New value is on right side of operator student_name := ‘John Miller’; student_name := current_student;
Implicit Cursors – SELECT . . . INTO . . . • Created automatically every time you use a SELECT command that returns a single row • Can be used to assign the output of a SELECT command to one or more PL/SQL variables • Can only be used if query returns one and only one record
Implicit Cursor Select Statement • Must return only a single row • Uses SELECT col_list INTO variable_list FROM table_name WHERE … • E.g. Select Prod_Code, Standard_Price INTO t_prod_code, t_std_price from PRODUCT Where Prod_Code = ‘RAM9’;
Function USE • Extend functionality of Built-In single row functions • Define functions for frequently used computations that return a single value for each row of data processed from a table • Structure like the built-in functions • Supply 0 to many input parameter values • Return exactly 1 value
Built-In Funcion Example SELECT to_char(Standard_Price, ‘$9,990.00’), . . . You supply 2 parameter values • Standard_Price a number and • ‘$9,990.00’ a string • The function returns a single value • Its datatype is string • Code has been written to take those parameters and compute the value returned.
RETURN Statement • Every function must have a RETURN Statement • Its form is simply: RETURN value • Where value must be a literal or variable that contains a single piece of data of the type that was specified in the Function Header
Functions - Syntax CREATE OR REPLACE FUNCTION fn_name [(param_name IN datatype, . . .) RETURN datatype IS scratch variable declarations [if needed] BEGIN function body concluding with RETURN variable_name or value END;
Sample Function Using a Cursor • Apex would like its workers to be able to specify a Cust_No and have the total sales to that customer automatically displayed • Total sales to a customer equals the SUM(Sale_Tot_Bill) for all sales orders for that customer
Sample Function Using a Cursor CREATE OR REPLACE FUNCTION cust_spend (p_cust_no IN NUMBER) RETURN number IS t_tot_bill sale.sale_tot_bill%type; BEGIN select sum(sale_tot_bill) into t_tot_bill from SALE where Cust_No = p_cust_no; RETURN t_tot_bill; END; /
PL/SQL Selection Structures • Simple IF • Where actions are to be taken only if some condition is true • IF/END IF: IF condition THEN program statements END IF;
PL/SQL Selection Structures • IF WITH ELSE CLAUSE • Where actions are to be taken if a condition is true and different actions are to be taken if the condition is false • IF/ELSE/END IF: IF condition THEN program statements ELSE alternate program statements END IF;
PL/SQL Selection Structures • COMPOUND Ifs – Multiple conditions to test • IF/ELSIF: IF condition1 THEN program statements; ELSIF condition2 THEN alternate program statements; ELSIF condition3 THEN alternate program statements; . . . ELSE alternate program statements; END IF;
IF Structures IF t_item_qty_ord >= 10 THEN t_std_price := t_std_price * .9; ELSE t_std_price := t_std_price * .95; END IF; NOTE: Null values always evaluate to false in an IF statement
IF with ELSIF IF t_item_qty_ord >= 10 THEN t_std_price := t_std_price * .9; ELSIF t_item_qty_ord >= 5 THEN t_std_price := t_std_price * .93; ELSE t_std_price := t_std_price * .95; END IF;
Executing a PL/SQL Programin SQL*Developers • Add a / After the END; at the end of your code to cause your script to execute • Add Show Errors; after that in order to see any errors in your code. • So each PL/SQL Program should end with: END; / Show Errors;
EXAMPLE • APEX is offering discounts on the products they sell • The discount will be 10% for products whose standard_price is over $100 and • 5% for all other products
Sample Function CREATE OR REPLACE FUNCTION apex_discnt (p_std_price IN NUMBER) RETURN NUMBER IS t_price PRODUCT.Standard_Price%TYPE; BEGIN IF p_std_price >= 100 THEN t_price := p_std_price * .9; ELSE t_price := p_std_price * .95; END IF; RETURN t_price; END;
A solid web-site providing descriptions of fundamentals PL/SQL programming. The links with arrows pointing to them cover the elements we have used in lab and which I will expect you to know on the exam.