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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
farolito20
Contributor III
Contributor III

Eliminate Duplicates Rows

I have two tables,

old_record

     id,name,age

new_record

     id,name,age

In some cases, the information in new_record is the same at the old_record, and I need to create one table with all the information from the two tables.

So, I use Autonumberhash(ID,NAME,AGE) to compare the information.

old_record:

load

          AutoNumberHash256(ID,Name,Age) AS key1

from DimCustomers_Day0.qvd (qvd);

 

new_record:

load

          AutoNumberHash256(ID,Name,Age) AS key2

from DimCustomers_Day1.qvd (qvd);

Then I wanna compare, but I don´t know how 😕

Labels (1)
0 Replies