I am writing a Procedure in which I need a value in a variable that I can both change and persist.
To be more specific, this needs to be a counter that starts at 10001 and increments everytime the procedure is called. I am not looking to return this value as it will need to be concatenated to several other values and then that will be returned (used for ID generation for another table).
I looked into using bind variables in SQL PLUS that doesn't seem to help. I would prefer not to create a table for this one value. Is there an option that would allow this?
You probably may need a sequence
Every time you call the procedure, the value will be increased by 1:
Depending on your Oracle version, you may not be able to use the sequence like I did; in this case, you can use a variable to store the value of the sequence, using the sequence in an SQL statement: