如何选择/调用sakila数据库中的存储函数

时间:2019-07-01 05:15:43

标签: sql postgresql

我正在使用PostgreSQL 10和pgAdmin-4来学习postgreql。我正在使用Sakila数据库。

我的问题是如何正确选择/调用存储函数?

我在Sakila数据库上试用了一个存储函数,

 SELECT inventory_in_stock(10)

没有任何问题。

但是当我尝试另一个时,

SELECT get_customer_balance (3,NOW()); 

我收到以下错误:

ERROR:  function get_customer_balance(integer, timestamp with time zone) does not exist
LINE 1: SELECT get_customer_balance(3,NOW());
               ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.
SQL state: 42883
Character: 8

0 个答案:

没有答案