I'm working on some code that talks to a PostgreSQL server for the first time (my experience is with SQL Server) and I need help figuring something out.
I've always tried to avoid "SELECT * ..." from code, but I can't figure out what the alternative is when calling a function. (Unfortunately, all of the examples I've found do a "SELECT * ...")
Here's the function I'm trying to call:
CREATE OR REPLACE FUNCTION aSchema.aFunction(var1 text, var2 accountidentifier, ...)
RETURNS int8
AS
$BODY$
DECLARE
retJobId BIGINT;
BEGIN
INSERT INTO aSchema.aTable (var1, var2, ...)
VALUES (var1, var2, ...)
RETURNING jobId INTO retJobId;
PERFORM aSchema.anotherFunction(retJobId, ...);
RETURN retJobId;
END;
$BODY$
LANGUAGE plpgsql VOLATILE;
I've tried SELECT retJobId FROM aSchema.aFunction(...)
, but I get ERROR: column "retjobid" does not exist
. Replacing "retJobId" with "*" works, but, like I said, I would like to avoid doing that.
You can choose between:
If you add
aschema
to search path, you can omit schema identifier: