Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
daisy1438
Contributor III
Contributor III

How to write multiple where conditions in single table?

I have two requirements below.

1)in my table one of the field data like below

  

DATA:          require output:

Uk                 Uk
US                 Us

-                   India

-

India

-missing-

-missing-

123

134

when loading time remove '-' and '123' and '-Missing'.

same time i need to write where date>='01/01/208'.

already i am using where <>missing condtion it working.but its remove only -missing-.i need to remove -,123,-missing.and where time>='01/01/2018'

2 Replies
Anil_Babu_Samineni

May be use And Operator to work more than one condition like?

Load * From Table Where Not Match(Date, '-missing-', '-', '123') and time >= '01/01/2018';

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
shiveshsingh
Master
Master

You can use where not match('Field Name','Value1','Value2')