|
I dont know why I am getting this error, I think this morning
i ran this query without errors and it worked.. I am trying to merge
two different tables from two different databases under the same user into one table, the tables have the same fields,
but different values, and I want a big table with the fields from the 2 merged tables. I am using:
And i get "#1113 - A table must have at least 1 column " DO you know what I am doing wrong, please? |
create table students_merged as select * from db1.students_contacts; insert ignore into students_merged select * from db2.students_contacts;