Is it possible to pass 2 variables from a front end to the query like this...
select * from abc where var1 = var2.
With the parameter form it is possible to accept it like this...
select * from abc where :var1 = :var2.
My question is can the 2 variables be passed from the front end to the back and how what form will it take in the select statement. Awaiting a much needed reply.
Thank You,
Nish
select * from abc where var1 = var2.
With the parameter form it is possible to accept it like this...
select * from abc where :var1 = :var2.
My question is can the 2 variables be passed from the front end to the back and how what form will it take in the select statement. Awaiting a much needed reply.
Thank You,
Nish