I have 3 tables, with 3 fields all the same. I basically want to select information from each table
For example:
userid = 1
I want
SELECT t1.*, t2.*, t3.* FROM `random` as t1, `pandom` as t2, `landom` as t3 WHERE t1.`userid`='1' AND t2.`userid`='1' AND t3.`userid`='1'