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

How to eliminate Keys from two seperate tables

I have TableA with an Order Name field, ProviderName, and ProviderNameKey, which I am eliminating certain Order Names in my qvd creation.  I have another TableB that also contains the ProviderNameKey field that I have created a seperate qvd for.  How do I go about eliminating the same ProviderNameKey's in TableB that are eliminated in TableA?  Would I concatenate the tables?

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

Hi.

you should left join them having as second table the one with the values you need to keep.

or

you could also use something like LOAD * FROM TableB WHERE EXISTS(KeyField)

giakoum

View solution in original post

2 Replies
giakoum
Partner - Master II
Partner - Master II

Hi.

you should left join them having as second table the one with the values you need to keep.

or

you could also use something like LOAD * FROM TableB WHERE EXISTS(KeyField)

giakoum

Not applicable
Author

Left Join was the way to go.  Thank you.