It refers to an audit table that I am creating, the purpose is to register the fields of the table in question. But I can not capture the ex id:
create or replace function audit_unidade.log_unidade_escola()
returns trigger as
$body$
begin
-- Aqui temos um bloco IF que confirmará o tipo de operação.
IF (TG_OP = 'INSERT') THEN
INSERT INTO audit_unidade.escola (after_updade)
VALUES (
(select 'id: ' || id || ' || ' || 'Tipo: ' || tipo_unidade || ' || ' || 'Escola: ' || nome_escola || ' || ' || 'CEP: ' || cep || ' || '
|| 'Bairro: ' || bairro || ' || ' || 'Rua: ' || ' || ' || rua || 'Nº: ' || numero || ' || ' || 'Email: ' || email || ' || ' || 'telefone1: ' ||
coalesce(telefone1,'') || ' || ' || 'Telefone2: ' || coalesce(telefone2,'') || ' || ' || 'id_diretor: ' || id_diretor || 'id_secretario: ' ||
id_secretario || ' || ' || 'id_coordenador1: ' || id_coordenador1 || ' || ' || 'id_coordenador2: ' || coalesce(id_coordenador2, 0)
from unidade.escola where id = (select nextval('unidade.escola_id_seq'))));
RETURN NEW;
END IF;
RETURN NULL;
end; $body$
language 'plpgsql'
I tried the (select nextval('unidade.escola_id_seq')
command above but it does not work, the table field "audit_unit_select" in the after_update field does not give an error, it does not record anything referring to the table "unit_collection" because of the id I can not capture it would be grateful for that help.