I have a postgresql function
CREATE OR REPLACE FUNCTION fixMissingFiles() RETURNS VOID AS $$ DECLARE deletedContactId integer; BEGIN SELE
You can raise a notice in Postgres as follows:
Postgres
raise notice 'Value: %', deletedContactId;
Read here