SQL - Stored Procedures and Functions
What is wrong with this procedure declaration?
CREATE PROCEDURE calculateSum(a INT, b INT) RETURNS INT AS $$ BEGIN RETURN a + b; END; $$ LANGUAGE plpgsql;
