I need to pass data from one table in a database to another database. In addition, in the new database some fields are not called the same but they must contain the same data (for example, in one table the field for cities is called "city" and in the other "location", but the data it stores are the same).
The schema of the databases is something like this:
-basedatos1
--artist
---id
---artist_name
---short_desc
---location
-basedatos2
--artist
---id
---name
---short_description
---city
It's not the real scheme, but I think it serves as an example. Neither do I need to pass all the fields, since the new table has additional fields that the old one does not have