Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Afternoon all,
I need to reduce some records being returned from an access table, I'm going to do it based on the following criteria...I just can't get the syntaz quite right:
UNITCD = 'STAKEHOLD'
UNITCD = 'NGS'
QUEUECD <> 'END'
STATCD <> 'COMPLETED'
How do I ensure that these are all being met in the where clause?
(UNITCD = 'STAKEHOLD' or UNITCD = 'NGS')
And
QUEUECD <> 'END'
And
STATCD <> 'COMPLETED'
(UNITCD = 'STAKEHOLD' or UNITCD = 'NGS')
And
QUEUECD <> 'END'
And
STATCD <> 'COMPLETED'
Lovely job, thanks very much.