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 |
+---------+
That will show all of the values in the H table as well as values from HL table where they both have an equal core column value. Is this what you are looking for?
EDIT
Sorry i didn’t see they were seperate tables. Oversight on my part.
Try this
As long as you have access to both databases and both tables that SHOULD work.