I would guess that if you do two mysql querys; one for each table you would get the info.
To make it easyer for yourself I would have two columns with the same data in in each table to give yourself a referance ! and dont have the same column names in both tables.
e.g. SELECT * FROM table_1 WHERE name = 'dave' ;
SELECT * FROM table_2 WHERE forname = 'dave' ;