QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!

Who Me Too'd this topic

Not applicable

Left join with where clause in load

TabA

a, b

1, '2011-01-01'

2, '2011-02-01'

2, '2011-03-01

TabB

c, d, e

1, '2011-01-01', '2011-01-31'

2, '2011-01-01', '2011-03-31'

Sample in the sql command:

select *

  from taba

left join tabb on a = c and b >= d and b <= e

How  can i do this in the load?

Who Me Too'd this topic