PostgreSQL - PL/pgSQL Fundamentals
What will be the result of executing the following function call?
CREATE FUNCTION square(x integer) RETURNS integer AS $$ BEGIN RETURN x * x; END; $$ LANGUAGE plpgsql; SELECT square(4);
