Reputation: 3
I have a specific query. Can we implement GOTO logic in Netezza Stored Procedure. I need to implement a labelled block inside a netezza procedure. Then I want to execute a GOTO statement from inside the same procedure, which will jump and execute the labelled block. Can we achieve that. If possible, how?
Upvotes: 0
Views: 354
Reputation: 3887
As of version 7.2, NZPLSQL does not support GOTO. The control structures it does support include:
Upvotes: 1