I have a requirement and would like to know the best way of achieving the goal.
The idea is to "inner join" two tables from two databases from two completely different websites.
For example, I have a website that tables ID's from another source. I then want to analyse those ID's in more detail by joining my table with the other websites table.
My initial thought would be to pass a JSON list of ID's from my table to a php file on the 3rd party host, which would then do a "select fields from table where id in (JSONList)", then pass back the information of which I would then stitch together and display.
Is there a better / easier way of doing this?