tutorial stored postgres instalar ilike for sql postgresql

stored - imprimiendo un valor de una variable en postgresql



postgresql tutorial (1)

Levante un aviso:

raise notice ''Value: %'', deletedContactId;

http://www.postgresql.org/docs/current/static/plpgsql-errors-and-messages.html

Tengo una función postgresql

CREATE OR REPLACE FUNCTION fixMissingFiles() RETURNS VOID AS $$ DECLARE deletedContactId integer; BEGIN SELECT INTO deletedContactId contact_id FROM myContacts WHERE id=206351; -- print the value of deletedContactId variable to the console END; $$ LANGUAGE plpgsql;

¿Cómo puedo imprimir el valor de deletedContactId en la consola?