Có, bạn có thể sử dụng RAISE NOTICE
như bên dưới. Nó đúng theo cách bạn đang làm.
RAISE NOTICE 'i want to print % and %', var1,var2;
Xem tại đây để biết thêm thông tin https:// www. postgresql.org/docs/current/static/plpgsql-errors-and-messages.html
CHỈNH SỬA:
begin
INSERT INTO tbl1 (col1) values (val1);
raise notice 'insert tbl1 done!';
end;