table1: Proid email password verify
12345 john@xx.com xxxxxxx xxxx
45678 lee@xx.com xxxxxxx xxxx
// some more tables here
table2: Proid fname lname gender dofbirth
13456 rey aj male xxxxx
12345 john paul male xxxxx
47812 murray dj male xxxxx
45678 lee mah female xxxxx
请注意,此表没有重复Proid
现在这Proid
对于两个表来说都是常见的,我想要的是,像这样简单地获取一个数组
$result = mysql_query("SELECT table1.verify,table1.Email,table2.* FROM table1,table2 WHERE table2.Pro_ID='$pro_id' LIMIT 1");
$row = mysql_fetch_array($result, MYSQL_ASSOC);
// and I expect $row variable now has this values
$row['email'],$row['verify'],$row['fname'],row['lname'],row['table2*']
但无论它采取第一个条目是什么。我该如何解决这个问题。这是这样做的方法吗?任何人都可以发布或建议我一个好方法。谢谢