我以前从未使用过 JOIN 或使用过多个表。
弹出此错误。
警告:mysql_fetch_assoc():提供的参数不是 [pathway to this mysql_query line] 中的有效 MySQL 结果资源。
我在这里做错了什么?
谢谢你。
$group_id= 4;
$result = mysql_query("SELECT table1.user_facebook_id AS user_facebook_id
FROM table1 JOIN table2
ON table1.user_id = table2.user_id
WHERE table2.group_id = $group_id");
$row = mysql_fetch_assoc($result);