Array in Where Clause
551174Jun 16 2009 — edited Jun 18 2009Hi,
I am having a function with an IN paramter as an array.
How do i use all the values in this array in the Where clause?
Function ( tArrayOfNos IN tArrType )
{
....
open Tstcursor FOR
select ...
from ...
where tNo in <all the nos in the array tArrayOfNos >
---
}
thanks for your help..