Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qlikview equalant of sql please.

What is the qlikview equalant of below 2 sql.Please help me.

DT_ACCT.SRC_CD = 'NFSC')

AND (DT_SECR.SECR_LVL_CD_1 NOT IN ('INSURANCE', 'ANNUITY', 'ANNUITIES'))

AND (FT_ACCT_TRN.SCND_TRN_TY_CD IN ('FCR', 'FEE') as Reccurring

(DT_ACCT.SRC_CD = 'NFSC')

AND (DT_SECR.SECR_LVL_CD_1 NOT IN ('INSURANCE', 'ANNUITY', 'ANNUITIES'))

AND (FT_ACCT_TRN.SCND_TRN_TY_CD NOT IN ('FCR', 'FEE') as Nonreccuring

Thanks a lot.

1 Reply
pgrenier
Partner - Creator III
Partner - Creator III

Hello,

If you wish, you may use the Match(text, expr [,expr2, ...]) to achieve both the IN and NOT IN verifications, such as:

Match([SECR_LVL_CD_1], 'INSURANCE', 'ANNUITY', 'ANNUITIES') = 0 /* Meaning not found */

Match([SCND_TRN_TY_CD], 'FCR', 'FEE') > 0 /* Will return either 1 or 2 if match is found */

Regards,

Philippe