I need to copy a table from one database to another. This will be a cronjob. Which one is the best way to do it? PHP script or Shell Script. The problem with PHP, both datab
CREATE TABLE db_target.cloned_table SELECT * FROM db_source.source_table;