> I'm porting some stored procedures from a MSSQL server, and thought I'd
> use PL/pgSQL.
>
> The original code is checking the insert with the line:
>
>if (@@Error != 0)
You might want to use something like:
SELECT INTO variable_name *
FROM table
WHERE field = some_value;
IF FOUND
I'm porting some stored procedures from a MSSQL server, and thought
I'd use PL/pgSQL.
The original code is checking the insert with the line:
if (@@Error != 0)
How do I do the same thing in PL/pgSQL?
--
Turbo __ _ Debian GNU Unix _IS_ user friendly - it's just
^