Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SQL Statement in QlikView

Hey,

how can i build the attached file in QlikView?

Thank you

4 Replies
MK_QSL
MVP
MVP

If you are fetching data directly from Database, you can use the same SQL statement in QlikView script.

Otherwise use as below

A:

Load * From Table1:

Left join (A)

Load * From Table2:

johanlindell
Partner - Creator II
Partner - Creator II

You should be able to implement a Venn-diagram from google charts into your application.

See Venn Diagram in Qlikview using google chart api

sushil353
Master II
Master II

Hi,

You can simply write your sql script using SQL keyword as

Table:

Load *;

SQL Select <list>

From TableA A

Left join TableB B

ON A.Key = B.Key

where B.Key is NULL;

tresesco
MVP
MVP

Try like:

Load Key,
      field1,
      field2
From TableAA
Left Join
Load Key
      filed3
      field4
From TableBB where Isnull(Key);