0

I have two tables. There are users informations from two sites:
p_users
p_users2
There are 3726 users in first and 13717 in second.

Some users in p_users2 are in p_users. I want merge this two tables to the one big table - but rows with same usernames can't be doubled.

How can I do this? I tried something like this:

DELETE FROM p_users2 WHERE user_id IN 
(
select p.user_id from p_users p
join p_users2 p2 on p.username=p2.username
)

After that I should receive a table with unique usernames, which I want to export and import to the first one. But when I execute my query I got error:

SQL Error (1093): You can't specify target table 'p_users2' for update in FROM clause. (MYSQL)

Dan
  • 5,081
  • 1
  • 18
  • 28
vizzdoom
  • 736
  • 1
  • 9
  • 19

4 Answers4

3

Create a new table where the username is unique, then do an Insert Ignore... see:

How can I merge two MySQL tables?

Community
  • 1
  • 1
SeanJA
  • 10,234
  • 5
  • 32
  • 42
1

Do them as two separate statements. First delete the duplicates with:

DELETE FROM p_users2 WHERE user_id IN 
(select p.user_id from p_users p)

Then use the INSERT with SELECT statement:

INSERT INTO P_USERS (FIELD1, FIELD2, FIELD3) SELECT FIELD1, FIELD2, FIELD3 FROM P_USERS2
RDL
  • 7,865
  • 3
  • 29
  • 32
0

Try this

DELETE p2 FROM p_pusers2 AS P2
INNER JOIN p_users p1
ON p1.username=p2.username
Kibbee
  • 65,369
  • 27
  • 142
  • 182
0

only insert users from the second table where there is no matching student in the first table

INSERT INTO p_users
SELECT * FROM p_users2 p2
WHERE NOT EXISTS (
  SELECT * FROM p_users p1
  WHERE p1.id = p2.id
)
knittl
  • 246,190
  • 53
  • 318
  • 364