Nov 12, 2003 #1 des0929 Technical User Nov 11, 2003 6 US Does anyone know the MS Access query sytax for an in list condition FoxPro example: Select * from table where inlist('Tom','Mary') Thanks.
Does anyone know the MS Access query sytax for an in list condition FoxPro example: Select * from table where inlist('Tom','Mary') Thanks.
Nov 12, 2003 1 #2 mpastore Programmer Mar 12, 2003 568 US For foxpro I think you meant.. Select * from table where inlist(mfield,'Tom','Mary') MS Access equavalent is ... Select * from table where mfield in('Tom','Mary') Mike Pastore Hats off to (Roy) Harper Upvote 0 Downvote
For foxpro I think you meant.. Select * from table where inlist(mfield,'Tom','Mary') MS Access equavalent is ... Select * from table where mfield in('Tom','Mary') Mike Pastore Hats off to (Roy) Harper