MySQL Forums
Forum List  »  Newbie

Re: Insert data from CONCAT data from one table using select statement into new table
Posted by: Peter Brawley
Date: May 26, 2019 11:07AM

Well, check the data it's looking at, eg ...

select p.username, u.idnumber, p.idnumber
from username u left join persons p using(idnumber);

select p.username, p.idnumber, u.idnumber
from persons p left join usdername u using(idnumber);

Options: ReplyQuote


Subject
Written By
Posted
Re: Insert data from CONCAT data from one table using select statement into new table
May 26, 2019 11:07AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.