[EMAIL PROTECTED] wrote:
Hi All,I want to copy a table (along with its contents) from one database to another database. In the destination database the table doesn't exist. Please let me know, if there is any way to do it.
mysqldump -u <username> -p original_databasename | mysql -u <username> -p new_databasename
check mysqldump --help for options. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]