Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Not in list

Status
Not open for further replies.

Enea

Technical User
Feb 23, 2005
90
US
When I wish to say: return all the records expect a and b for example.

Do I use Not in List?
if yes, how do I type the values?
"a", "b"
'a', 'b'
"a"; "b"
?

 
Are you asking a BO question or a SQL quesiton?

Not in list is the way to do this.

In SQL: not in ('a','b')

In BO specify the parameters using a comma or semi-colon as a separator. But, be careful. a,b is OK. a, b is not.

Steve Krandel
Symantec
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top