How can I do lexical parameter in PL/SQL like :

select :x,:y from emp;

however we do that in SQL :

select &x,&y from emp;

The PL/SQL dose'nt consider x and y as filds just as string!!

Please, help me to do that.

thanks..