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: 
upaliwije
Creator II
Creator II

Where Condition

Hi Friends

WHERE BRA_CODE =('AL00' 'AP00' 'AA00')

When I load data I have added the above where clause in my sql. But it is not working . Pls correct me

1 Solution

Accepted Solutions
its_anandrjs

Try with

WHERE Match(BRA_CODE,'AL00','AP00','AA00')


and what is your complete SQL script let me know


View solution in original post

5 Replies
its_anandrjs

Try with

WHERE Match(BRA_CODE,'AL00','AP00','AA00')


and what is your complete SQL script let me know


jagan
Luminary Alumni
Luminary Alumni

Hi,

Use In

WHERE BRA_CODE IN ('AL00' 'AP00' 'AA00')


Regarsd,

Jagan.

rbecher
MVP
MVP

WHERE BRA_CODE IN ('AL00', 'AP00', 'AA00')

Astrato.io Head of R&D
jagan
Luminary Alumni
Luminary Alumni

Hi,

If you want to use in Qlikview Script then try like this

WHERE Match(BRA_CODE, 'AL00' 'AP00' 'AA00')


Regards,

Jagan.

rbecher
MVP
MVP

..would be much better to use the Where Clause on SQL level than LOAD level! This prevents a lot of traffic from the database to QlikView.

Astrato.io Head of R&D