Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Moving tables between databases

Status
Not open for further replies.

ushtabalakh

Programmer
Jun 4, 2007
132
Hi there,
I only have access to my phpmyadmin on a website,
How can I transfer tables from one database to the other? is there any sql command for that in mysql?
 
run this in the SQL tab in phpmyadmin

Code:
create table database1.tablename
select * from database2.othertablename
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top