The main table is Table2 and I want to delete duplication RollID in Table1 but retaining 1 like the example below 6456 (Note: Primary Keys Table ID's are auto-incremental)
Table 1 (child table)
Table1_ID   RollID
 1          6456 
 2          6456 
 3          6459 
Table2 (Parent)
Table2_ID    RollID
 1            6456 
 2            6459 
How can I attain this scenario.. Your helping hand is highly appreciated...
 
     
     
    