sasfvs

Untitled

Jul 5th, 2017
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.20 KB | None | 0 0
  1. -- IF THEN
  2. SET SERVEROUTPUT ON;
  3. DECLARE
  4.     v_num NUMBER := 9;
  5. BEGIN
  6.     IF v_num < 10 THEN
  7.         DBMS_OUTPUT.PUT_LINE('Inside the IF, if true');
  8.     END IF;
  9.         DBMS_OUTPUT.PUT_LINE('Outside of IF'); 
  10. END;
Advertisement