I'm trying to write a store procedure that can take some input parameters (obviously), run multiple queries against those, taking the output from those and doing calculations, and from those calculations and the original queries, outputting a formatted text string like:

Number of Rows for max(Z) matching condition x and y of total rows matching x (x&y/x*100).

To explain the max(Z) bit, this will be the username field, it won't matter which actual entry is picked, because the where clause will filter the results by user id, is there a saner way to do this?

link|improve this question
I'm afraid it's not really clear exactly what you're trying to do. Could you perhaps show the results you'd expect for a toy example? – j_random_hacker May 6 '10 at 4:54
feedback

1 Answer

up vote 0 down vote accepted

For starters break the code up into multiple procedures. Don't create one procedure that does all of these things.

link|improve this answer
Reading this document: postgresql.org/docs/8.3/static/plpgsql.html Has clarified how these things work for me, what i was looking for was the PL/pgSQL "SELECT ... INTO ..." syntax. That at text concatentation "||", and some other small things, but thank you both for your suggestions. – fenix May 7 '10 at 0:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.