Please help, I'm having two tables Table_A and Table_B below, I would like to append data from Table_B to Table_A where Table_A.C1 = Table_B.C1. The Table_A final result below.
Table_A 
C1      | C2      
-------- ---------
1@a.com | e@a.com 
Table_B 
C1      | C2      
-------- ---------
1@a.com | abc@.com 
**FINAL RESULT**
Table_A 
C1      | C2      
-------- ---------
1@a.com | e@a.com; abc@.com 
 
     
     
     
    