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: 
Not applicable

Drop table

goo day ,

Can you please explain me when and why to use drop table ?

for example this :

GREEN_SALES:
//Sales of product made from recycled materials
Load
CUSTOMER,
SALES_DATE,
QUANTITY
Resident 2009_SALES_DETAIL
Where Exists(RECYCLE_PRODUCT,PRODUCT_CODE);

Drop table TEMP_RECYCLE_PRODUCTS;

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

There are 2 tables, the TEMP_RECYCLE_PRODUCTS table is a temporary one because it is used to filter the first table only with existing products. Once the filtering is ended the TEMP_RECYCLE_PRODUCTS is deleted with a drop.

View solution in original post

1 Reply
alexandros17
Partner - Champion III
Partner - Champion III

There are 2 tables, the TEMP_RECYCLE_PRODUCTS table is a temporary one because it is used to filter the first table only with existing products. Once the filtering is ended the TEMP_RECYCLE_PRODUCTS is deleted with a drop.