Re: copying rows from one database to another database

2001-01-11 Thread Rolf Hopkins
This is off the top of my head so check the manual on this. insert into db1.table from db2.table where... - Original Message - From: "Dang Nguyen" <[EMAIL PROTECTED]> To: "'mySQL mailing list'" <[EMAIL PROTECTED]> Sent: Friday, January 12

Re: copying rows from one database to another database

2001-01-11 Thread Phil Huynh
I think you need to copy data first then delete the data. copying data between two databases: insert into databaseA.table select * from databaseB.table where . delete data : delete from databaseB.table where ... Dang Nguyen wrote: > > Hi All, > > What is the best way

copying rows from one database to another database

2001-01-11 Thread Dang Nguyen
Hi All, What is the best way to move an entire row of data from a table in one database to another table in a different database? The two databases are on the same system. Thanks in advance, Dang H. Nguyen - Before posting, pl