Subject psql question about declare variable
Author Dixon Epperson
when creating a stored procedure why is it that sometimes you write

AS
DECLARE VAR1 INTEGER;
BEGIN

and other times you write it

AS
DECLARE VARIABLE VAR1 INTEGER;
BEGIN

E. D. Epperson Jr