I find myself performing a simple procedure in PL/SQL
to practice receiving an entry and exit number and increasing it each time it is executed. The code is like this.
CREATE PROCEDURE sumauno(suma in out int)
IS
BEGIN
SET suma=suma+1;
END;
in the "SET suma=suma+1"
statement, I get a syntax error in the first suma
. And I'm not understanding why.
Thank you very much everyone