Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The clause I am using is below
Where
left(Customer_Type,1) <> 5 or
left (Customer_Number,1) <> 'S';
S999981 is still showing up in the Customer_Number field
What am I doing wrong?
Thanks,
Josh
May be try like:
Where
NOT MATCH(Left(Customer_Type,1), 5, 'S');
Thanks Vishwarath that worked.
Glad. Close the thread accordingly.