I need to create a table that will combine two database tables together. Both databases have a table that share a common column: core.
So I need each row to show the common "core".
Do I need to create a separate database to achieve this?
Database: hero
Table: cartons_current
+---------+
| date |
+---------+
| core |
+---------+
| qty |
+---------+
Database: hero_label
Table: labels_current
+---------+
| date |
+---------+
| core |
+---------+
| qty |
+---------+