How to give parameter query

  • Thread starter Thread starter subbu
  • Start date Start date
S

subbu

Hi,
I have requirement to to fetch soem records based on the
some group code which may be SPSREL OR SPSSVM OR
SPSVMN.How to give in the criteria.

Any help in this regard is highly aprreciated

subbu
 
You would use the IN clause for the criteria

In ("SPSREL", "SPSSVM", "SPSVMN")

or exactly what you have written

"SPSREL" OR "SPSSVM" OR "SPSVMN"
 
Back
Top