Saturday, January 2, 2021

Create table and copy from another database

CREATE TABLE destination_db.new_table LIKE source_db.existing_table; INSERT destination_db.new_table SELECT * FROM source_db.existing_table;

Total Pageviews