How do I merge two tables in MySQL and where table 1 is primary
问题 How do I merge two tables in MySQL? I've looked at several other posts on this topic but they don't go into enough detail for me. I'm a novice MySQL user, so bear with me I have a primary table and a temp table that look like this: CREATE TABLE temp_import ( id int(11) NOT NULL auto_increment, Name varchar(255) default NULL, MerchantID int(11) default NULL, SKU varchar(255) default NULL, PRIMARY KEY ( id ) ) ENGINE=MyISAM AUTO_INCREMENT=765811 DEFAULT CHARSET=utf8; I'm inserting data into the