Create or replace Function public.my_function(p_el1 int, p_el2 int, p_name char)
Returns table (id int, price int)
language plpgsql
as
$$
declare
v_total int;
begin
-- insert into first table
insert into my_table1
(added_name)
values
(p_name);
-- Insert the result of a calculation in a variable
select (p_el1 + p_el2) into v_total;
-- Update a second table
update my_table2 mt
set
price = v_total
where
mt.name = p_name;
-- Return the result of a query
return query (select
mt.id,
mt.price
from
my_table2 mt
where
mt.name = p_name);
end;
$$
CREATE OR REPLACE FUNCTION totalRecords ()
RETURNS integer AS $total$
declare
total integer;
BEGIN
SELECT count(*) into total FROM COMPANY;
RETURN total;
END;
$total$ LANGUAGE plpgsql;
CASE
WHEN condition_1 THEN result_1
WHEN condition_2 THEN result_2
...
ELSE result_n
END