Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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