0

我正在尝试在 PL/pgSQL 函数中实现一些业务逻辑。

我已经编写了一些伪代码来解释我想要包含在函数中的业务逻辑类型。

注意:这个函数返回一个表,所以我可以在如下查询中使用它:

SELECT A.col1, B.col1 FROM (SELECT * from some_table_returning_func(1, 1, 2, 3) as A), tbl2 as B;

pl/PgSQL 函数的伪代码如下:

CREATE FUNCTION some_table_returning_func(uid int, type_id int, filter_type_id int, filter_id int) RETURNS TABLE AS $$

  DECLARE
  where_clause text := 'tbl1.id = ' + uid;
  ret TABLE;

  BEGIN

  switch (filter_type_id)
  {
      case 1:
     switch (filter_id)
     {  
         case 1:
                where_clause += ' AND tbl1.item_id = tbl2.id AND tbl2.type_id = filter_id';
                break;

             //other cases follow ...
     }
     break;

      //other cases follow ...
   }

   // where clause has been built, now run query based on the type
   ret = SELECT [COL1, ... COLN] WHERE where_clause;

   IF (type_id <> 1) THEN
      return ret;
   ELSE
      return select * from another_table_returning_func(ret,123);
   ENDIF;

END;
$$ LANGUAGE plpgsql;

我有以下问题:

  1. 如何正确编写函数(即使用生成的 WHERE 子句执行查询,并返回一个表

  2. 如何编写一个接受表和整数并返回表 (another_table_returning_func) 的 PL/pgSQL 函数?

4

1 回答 1

1

1.) 您可以使用 SETOF 子句返回类似表的结果:RETURNS SETOF tablename

于 2010-05-17T22:11:39.000 回答