Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SET SERVEROUTPUT ON;
- DECLARE
- v_pi CONSTANT NUMBER(7,6) := 3.141592; -- both declaration and initialization
- BEGIN
- DBMS_OUTPUT.PUT_LINE(v_pi);
- END;
Advertisement