I have two tables named PERSONAL and CUSTOMER
PERSONAL table has fields : ID_PER, P_LASTNAME, (key = ID_PER)
CUSTOMER table has fields : ID_CUS, C_LASTNAME, (key = ID_CUS)
I need a process to review each LASTNAME in PERSONAL table and to search if there is a equal LASTNAME in CUSTOMER.
How can...