problemas en Oracle, parte 2 de 1000: establecer valor a variables
en Oracle no se usa el SET para establecer el valor de una variable
SET variable_name = value;
eso te dara un descriptivo "ORA-00922: missing or invalid option"
para hacerlo, se hace al estilo de Delphi =o)
variable_name := value;
Comments
Anonymous comments are disabled