I am trying to copy from 1 table to another table on different database.
The SQL query dont seem to work:
INSERT INTO db1.table
SELECT T.number, T.dob, T.house_number FROM `db2.table2` as T;
I am getting an error saying:
ERROR 1146 (42S02): Table 'db2.table2' doesn't exist
If you insist on quoting the table name (not needed), it should be