Help to realise function - Mailing list pgsql-general

From Harvey, Allan AC
Subject Help to realise function
Date
Msg-id 3C2CED55DF019847AB7BD7317837BDA909645131@ntlmsg02.onesteel.com
Whole thread Raw
Responses Re: Help to realise function  (Klint Gore <kg@kgb.une.edu.au>)
List pgsql-general
Hi all,

Can anyone offer suggestions on how to realise this function....

It is the $1 as the table name that is the problem.

I'm using Version 7.4.5

create or replace function last_scan( varchar, varchar ) returns float as '
    declare
        result float;

    begin
        result := value from $1 where parameter = $2 order by dt desc limit 1;

        return result;
    end;
' LANGUAGE plpgsql;



Thanks

Allan


The material contained in this email may be confidential, privileged or copyrighted. If you are not the intended
recipient,use, disclosure or copying of this information is prohibited. If you have received this document in error,
pleaseadvise the sender and delete the document. Neither OneSteel nor the sender accept responsibility for any viruses
containedin this email or any attachments.
 

pgsql-general by date:

Previous
From: "HIRA SIROJUDIN ABBAS"
Date:
Subject: help me...
Next
From: Klint Gore
Date:
Subject: Re: Help to realise function