Help to realise function

Поиск
Список
Период
Сортировка
От Harvey, Allan AC
Тема Help to realise function
Дата
Msg-id 3C2CED55DF019847AB7BD7317837BDA909645131@ntlmsg02.onesteel.com
обсуждение исходный текст
Ответы Re: Help to realise function  (Klint Gore <kg@kgb.une.edu.au>)
Список 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 по дате отправления:

Предыдущее
От: "HIRA SIROJUDIN ABBAS"
Дата:
Сообщение: help me...
Следующее
От: Klint Gore
Дата:
Сообщение: Re: Help to realise function