使用datetime参数在pgadmin中执行存储过程

时间:2018-07-09 09:33:44

标签: sql postgresql stored-functions

我是pgadmin-4中的新手,postgressql,我不知道如何在具有日期时间参数的pgadmin中执行存储过程?

CREATE OR REPLACE FUNCTION Check(a integer, b integer, startdate timestamp without time zone, enddate timestamp without time zone)

我该怎么算。 我已经跑了:

SELECT "Check"(56, 0,'2018-07-07','2018-07-09');

但是它给了我这样的错误:

功能检查(整数,整数,未知,未知)不存在

1 个答案:

答案 0 :(得分:1)

您可以检查两件事:

-- quoted function's name: "Check" 
CREATE OR REPLACE FUNCTION "Check"(a integer, b integer,
              startdate timestamp without time zone,
              enddate timestamp without time zone)

并使用显式强制转换:

-- should work as-is
SELECT "Check"(56, 0,'2018-07-07','2018-07-09');

--with explicit cast
SELECT "Check"(56, 0,'2018-07-07'::timestamp without time zone,
                     '2018-07-09'::timestamp without time zone);

DBFiddle Demo