does anybody had any solution for lexical parameter i am using on the following pl/sqp
i had query like this
select s, y from z
&p1
&p2;
then i had one procedure
procedure xxx (x in varchar2)
w varchar2(10);
cursor is select h,t from z
&p1
how could i use the paramters that i already used in the first query if i want to do the same in the procedure?
Thanks