我正在使用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