I have a valid PL/SQL code in the Declare section at one of code pieces at work. It looks like that
Name1 name2 := name3();
I have hard time to understand what or how this variable is defined. There are no reserved keywords in the line. I understand that Name1 is my variable name and name3() probably is a function that calculates a value and this value is being assigned in name2. I cannot understand how this fits with the expected syntax (after the variable name to have the type/length). Is it possible the name2 value to be the variable type (Number, Vatchar2 etc) and this to be defined from the function name3()? Any suggestions are appreciated.