Substitution Variable in Select Statement (HELP) [message #369747] |
Tue, 03 October 2000 14:59  |
John Nelson
Messages: 1 Registered: October 2000
|
Junior Member |
|
|
I am trying to use a substitution variable following the select statement. My need is to take from one to 30 requests from a website for redisplay.
I have tried this approach in a package...
Define v_web_in = 'Column1,Column2,Column3'
Cursor lc_need_rec IS
Select &&v_web_in
From mytable
Where condition='true'
where v_web_in is defined as the columns to be selected based upon checkbox choices from the web site.
Any suggestions out there ??
|
|
|
|