如何在 Postgres 中执行函数

Posted

技术标签:

【中文标题】如何在 Postgres 中执行函数【英文标题】:How to execute functions in Postgres 【发布时间】:2016-08-03 08:41:55 【问题描述】:

我尝试了以下方法:

select pricelimit();

但它给我的错误如下:

没有函数匹配给定的名称和参数类型。您可能需要添加显式类型转换。

这是函数:

CREATE OR REPLACE FUNCTION pricelimit(
    p_product_id numeric,
    p_pricelist_version_id numeric)
  RETURNS numeric AS
$BODY$
DECLARE
    v_Price     numeric;
    v_ProductPrice  numeric;
    bom     record;
BEGIN
    --  Try to get price from PriceList directly
    SELECT  COALESCE (SUM(PriceLimit), 0)
        INTO    v_Price
    FROM    M_PRODUCTPRICE
    WHERE M_PriceList_Version_ID=p_PriceList_Version_ID AND M_Product_ID=p_Product_ID;
    IF (v_Price = 0) THEN
        FOR bom in SELECT bl.M_Product_ID AS M_ProductBOM_ID, 
            CASE WHEN bl.IsQtyPercentage = 'N' THEN bl.QtyBOM ELSE bl.QtyBatch / 100 END AS BomQty , p.IsBOM 
        FROM PP_PRODUCT_BOM b
        INNER JOIN M_PRODUCT p ON (p.M_Product_ID=b.M_Product_ID)
        INNER JOIN PP_PRODUCT_BOMLINE bl ON (bl.PP_Product_BOM_ID=b.PP_Product_BOM_ID)
        WHERE b.M_Product_ID = p_Product_ID
        LOOP
            v_ProductPrice := Bompricelimit (bom.M_ProductBOM_ID, p_PriceList_Version_ID);
            v_Price := v_Price + (bom.BOMQty * v_ProductPrice);
        END LOOP;
    END IF;
    --
    RETURN v_Price;
END;
$BODY$
  LANGUAGE plpgsql VOLATILE
  COST 100;

并且函数存在于数据库中 请问这个问题怎么解决啊

【问题讨论】:

向我们展示函数。 edit 您的问题并向我们展示完整 create function 声明(请格式化文本,no screenshots) 我如何使用参数调用 【参考方案1】:

您的函数需要两个参数,但您调用它时没有任何参数。

你需要这样称呼它:

select pricelimit(4, 2);

其中4 是参数p_product_id 的值,2 是参数p_pricelist_version_id 的值

有关更多示例和详细信息,请参阅手册:https://www.postgresql.org/docs/current/static/sql-createfunction.html#SQL-CREATEFUNCTION-EXAMPLES

【讨论】:

【参考方案2】:

根据你的功能定义

CREATE OR REPLACE FUNCTION pricelimit(
    p_product_id numeric,
    p_pricelist_version_id numeric);

函数调用会这样

select pricelimit(10, 4);

您必须传递参数 p_product_id 和 p_pricelist_version_id。

如果你想从你的参数中传递默认值,我们必须改变函数定义如下:

CREATE OR REPLACE FUNCTION pricelimit(
    p_product_id numeric default 0::numeric,
    p_pricelist_version_id numeric default 0::numeric)
  RETURNS numeric AS
$BODY$
DECLARE
    v_Price     numeric;
    v_ProductPrice  numeric;
    bom     record;
BEGIN

    --function Defination
END;
$BODY$
  LANGUAGE plpgsql VOLATILE
  COST 100;

然后你可以像这样调用函数

select pricelimit();

希望您的疑虑已消除......

【讨论】:

以上是关于如何在 Postgres 中执行函数的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Postgres 9.4 中对 JSONB 类型的列执行更新操作

如何在 Postgres 函数中存储日期变量?

Postgres如何创建一个在查询中使用的函数

如何在带有 Postgres 的动态框架中使用窗口函数中的列值?

如何在 postgres 中编写组合函数?

如何在 Postgres 函数中检索多个结果行?