Difference between revisions of "Plsql variables"

From John Freier
Jump to: navigation, search
(Created page with ' DECLARE attrId number; BEGIN attId:= seq_attr.nextval; dbms_output.put_line (attId); END;')
(No difference)

Revision as of 12:58, 17 December 2012

DECLARE 
    attrId number;
BEGIN
    attId:= seq_attr.nextval;
    dbms_output.put_line (attId);
END;