Re: Hi there, new here and have question

Поиск
Список
Период
Сортировка
От Asche
Тема Re: Hi there, new here and have question
Дата
Msg-id 91D5F89E-5173-487B-B797-67533E9B9361@mac.com
обсуждение исходный текст
Ответ на Hi there, new here and have question  ("Hendra" <manusiatidakbiasa@gmail.com>)
Список pgsql-general
> Any suggestion everyone?
>
Sorry, i was to fast sending this email out ;-)

change the first parameter in the first line to '_id_depth'

CREATE OR REPLACE FUNCTION  listofemployeebasedondepartment(_id_dept
int)
  RETURNS SETOF employee AS
$BODY$
BEGIN

  RETURN QUERY
      SELECT
          *
      FROM
          employee
      WHERE
          id_dept = _id_dept;

  RETURN;
END;
$BODY$
  LANGUAGE 'plpgsql';

Jan

В списке pgsql-general по дате отправления:

Предыдущее
От: Asche
Дата:
Сообщение: Re: Hi there, new here and have question
Следующее
От: Tom Lane
Дата:
Сообщение: Re: PG_MODULE_MAGIC lost if strip the object file