using sql on v7.4 server to feed stored procedure

From: "Brian Jarrett" <digimotif(at)gmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: using sql on v7.4 server to feed stored procedure
Date: 2007-03-30 19:19:34
Message-ID: 68b897d90703301219p5a891976wf3f0baefc5f85551@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I just found out that I posted this to the wrong list before, so if
this ends up as a cross-post, I'm sorry.

I've created some sql scripts to update a database in version 8.x and
now I'm trying to get them to run on servers using v7.4

The following statement works on 8.x servers, but not on 7.4 and I
can't figure out how to get it to operate in the earlier version:

select calc_cum_gpa_mp(marking_period_id::TEXT)
from (select distinct marking_period_id from student_mp_stats) as
sms1;

I get the error:

ERROR: syntax error at or near "("
SQL state: 42601
Context: compile of PL/pgSQL function "calc_cum_gpa_mp" near line 8

Can anyone point me in the right direction? I've searched everywhere
for how to use stored procedures in sql queries, and haven't found how
to use the subquery to feed values to the stored procedure. It almost
looks like I'd need to create another plpgsql function with a loop to
do the same thing.

Brian

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2007-03-30 20:14:48 Re: using sql on v7.4 server to feed stored procedure
Previous Message Claus Guttesen 2007-03-30 11:19:12 Re: select vs. select count