Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Using Where in Scripts

I am trying to add a 2nd where clause in my load scripts to bring back claims that are only Open and Closed and I keep getting a load error, below is how I have it now...


SQL SELECT *
FROM
"ACT_DBASES_PROD".dbo."WC_CLAIM_ADJUSTERS"
Where (
[SNAPSHOT_CCYYMM] >='201701') AND
Where Match (
[CLAIM_STATE]='Open','Closed')

1 Solution

Accepted Solutions
sunny_talwar

May be try this

SQL SELECT *
FROM "ACT_DBASES_PROD".dbo."WC_CLAIM_ADJUSTERS"
Where ([SNAPSHOT_CCYYMM] >='201701') AND [CLAIM_STATE] IN ('Open','Closed');

View solution in original post

4 Replies
sunny_talwar

May be try this

SQL SELECT *
FROM "ACT_DBASES_PROD".dbo."WC_CLAIM_ADJUSTERS"
Where ([SNAPSHOT_CCYYMM] >='201701') AND [CLAIM_STATE] IN ('Open','Closed');

Anonymous
Not applicable
Author

Thank You Sunny that worked!!!!

sunny_talwar

Awesome

vishsaggi
Champion III
Champion III

Hello Tom,

Can you close the thread by marking Correct answer you got.