PLSQL Notes
PLSQL Notes
-- is prefixed with:
-- Advantages of %TYPE :
-- you can avoid errors caused by data type mismatch and wrong precision
Declare
v_name employees.first_name%TYPE;
v_sal employees.salary%TYPE;
V_date_of_joining employees.hire_Date%TYPE;
V_balance number(10,2);
v_min_sal v_sal%TYPE;
v_max_balance V_balance%TYPE;
BEGIN
select first_name,salary,hire_date
INTO v_name,v_sal,V_date_of_joining
from employees
where employee_id=101;
DBMS_OUTPUT.put_line(v_name);
DBMS_OUTPUT.put_line(v_sal);
DBMS_OUTPUT.put_line(V_date_of_joining);
END;
DECLARE
v_emp_id employees.employee_id%TYPE;
v_ename employees.first_name%TYPE;
v_dep_id employees.department_id%TYPE;
v_dep_name departments.department_name%TYPE;
BEGIN
SELECT e.employee_id,e.first_name,e.department_id,d.department_name
into v_emp_id,v_ename,v_dep_id,v_dep_name
end;
--PLSQL Variables
-- Reference -- will hold values called pointers which will point to the
storage location.
-- Large Object(LOB) --
-- Composite
-- Record
-- Collection
-- CHAR
-- varchar
-- varchar2
-- Date
-- number
-- binary_number
-- int_number
-- binary_float
-- binary_double
-- ONLY TRUE, FALSE and NULL values can be stored in boolean variable
DECLARE
v_flag BOOLEAN;
BEGIN
-- IF v_flag THEN
ELSE
END IF;
END;
-- Bind Variables
begin
end;
print v_sal;
print v_name;
v_job employees.job_id%type;
begin
dbms_output.put_line(v_job);
end;
print v_sal;
print v_name;
begin
end;
declare
v_sal number(6);
begin