dink87522 Posted November 12, 2008 Share Posted November 12, 2008 This is probably a noob question, but how do I extract the data from a MYSQL table? I.e. if I have a table with 1000 rows and columns of data how do I take that from table 1 and put it into table 2 on a new server etc. Link to comment https://forums.phpfreaks.com/topic/132374-solved-table-data/ Share on other sites More sharing options...
ratcateme Posted November 12, 2008 Share Posted November 12, 2008 create a new table to the same specs and then use this INSERT INTO `tablea` SELECT * FROM `tabelb` ; i would recommended downloading php mysql admin it is really good at doing stuff like that. Scott. Link to comment https://forums.phpfreaks.com/topic/132374-solved-table-data/#findComment-688258 Share on other sites More sharing options...
dink87522 Posted November 12, 2008 Author Share Posted November 12, 2008 I just found how to export my database. Thanks. Link to comment https://forums.phpfreaks.com/topic/132374-solved-table-data/#findComment-688262 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.