While converting a Sybase ASE script to a PL/pgSQL procedure, how we can translate “goto”?
I am trying to rewrite a Sybase ASE script to a PostgreSQL script. There is goto
in Sybase ASE to shift the execution to a particular block of code and after executing that block, the execution should end. I am unable to achieve this scenario in a PL/pgSQL procedure.