First off, add a primary key to both tables so they look like.
table_1
user_id, username, realname, address, phone
table_2:
user_id, user, real, address, phone
INSERT INTO table_1 SELECT * FROM table_2
WHERE table_2.user_id NOT IN
SELECT table_1.user_id FROM table_1