hi all. im looking to import data from we will call it user and import it into table member. basically i have two different databases using different forum software. forum A uses "user" as a table name and forum B uses "member" How can i import this into the single database and reserve all the data? Thanks for all the help
http://www.w3schools.com/Sql/sql_select_into.asp you can use the select into command with mysql to map fields from one table into another. This tutorial should help you get the results you need, although I'm sure if you posted both table schemas here someone would be glad to help you out
Find correct field names, fix next query and use it: INSERT INTO member_table (user_id, user_name) SELECT user_id, user_name FROM user_table;