I’m searching for a way to compare two tables, and determine which rows are missing in one table. These two tables are on different MySQL servers.
Table 1 ---------------- Apple Microsoft Google Table 2 ---------- Apple Google
What I want is to show a list of the items from Table 1 that are missing.
There are a few ways to get the outcome you want, if you want to use PHP it is easiest like so:
Maybe even work with
array_intersectinstead of a while loop.