Subject | psql question about declare variable |
---|---|
Author | Dixon Epperson |
Post date | 2005-02-17T21:51:23Z |
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
AS
DECLARE VAR1 INTEGER;
BEGIN
and other times you write it
AS
DECLARE VARIABLE VAR1 INTEGER;
BEGIN
E. D. Epperson Jr