Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
manojin123
Contributor III
Contributor III

after left join how to drop second table in qlik sense

Hi All,

 

Hope you guys help me on this.  

 

i am joining two table and after joining  i will to  drop second table.

please see the below code for you reference.

[ACD Report]:
LOAD
[CALLS],
[ABANDONED],
[HANDLE TIME],
[HOLD TIME],
[AFTER CALL WORK TIME],
[DISPOSITION],
[CALL ID] AS [CALL ID-CALL_ID]]
FROM [lib://Report (NY_manoj)/LOB_MGR ACD Report.csv]
(txt, codepage is 28591, embedded labels, delimiter is ',', msq);

Left join

[VCC_CALL_LOG]:
LOAD
[CALL_ID] AS [CALL ID-CALL_ID],
[DATE_OF_CALL],
[SURVEY_BEN_COUNSELOR],
[SURVEY_CONTACT_CTR],
[SVL1];


SELECT "CALL_ID",
"DATE_OF_CALL",
"CALL_TYPE",
"CALLER_SVC_LEVEL_THRESHOLD",
"QUEUE_CALLBACK_WAIT_TIME",
ISNULL("CALLER_SVC_LEVEL_THRESHOLD",'45') as SVL1
FROM "CALL_LOG" WHERE DATE CALL>='05/01/2021' and DATE_OF_CALL<='05/31/2021';







 

 

Labels (2)
1 Solution

Accepted Solutions
rubenmarin

hi, when you do a left join you end with only one table combined, the 2 original tables are dropped. Using left keep you can keep both tables, but with join you end with only one table.

View solution in original post

2 Replies
rubenmarin

hi, when you do a left join you end with only one table combined, the 2 original tables are dropped. Using left keep you can keep both tables, but with join you end with only one table.

manojin123
Contributor III
Contributor III
Author

Thank you