Postgresql – Error calling procedure in posgres "No procedure matches the given name and argument types. You might need to add explicit type casts."
CREATE or replace PROCEDURE mytransactions (n_transactions_id VARCHAR, n_transaction_amount SMALLINT, n_transaction_date TIMESTAMP, n_Delivery_date Date, n_customer_id VARCHAR, n_product_id VARCHAR, n_store_id VARCHAR) LANGUAGE plpgsql AS $BODY$ BEGIN INSERT INTO transactions (transactions_id, transaction_amount, transaction_date, Delivery_date, customer_id, product_id, store_id) VALUES (n_transactions_id, n_transaction_amount, n_transaction_date, n_Delivery_date, n_customer_id,…