0

数据库:

  • xx_users (id, name, user_id, email, location)
  • xx_questions (id, question, description, user_id)

代码:

$friends = $facebook->api('/me/friends');
$arr= $friends['data'];
$friend_ids_arr = array();
foreach($arr as $friend) {
    $friend_ids_arr[] = $friend['id'];
}

$sql = "SELECT (SELECT * FROM xx_questions WHERE user_id IN (" . implode(',', $friend_ids_arr) . ") OR user_id = '$user' ORDER BY time DESC) (SELECT * from questions INNER JOIN users ON users.user_id = questions.user_id WHERE users.location = 'Cambridge, Cambridgeshire')";    
$data = mysql_query($sql) or die(mysql_error());

while ($row = mysql_fetch_assoc($data)) {
       // echo values from what's been selected
}

如果出现以下三种情况中的任何一种,我正在尝试从xx_questions(用户已发布的)中选择问题:

  1. 发帖人的 user_id 与当前用户的其中一位朋友的值匹配的值(即发帖人和用户是朋友)
  2. 发布者的 user_id 与用户的值匹配的那些值(即发布者是用户)
  3. 发布者的位置与当前用户的位置匹配的那些值(即发布者和用户当前在同一城市)

我已经设法使 1 和 2 起作用,但是当我尝试引入 3 时出现问题,所以我的两个问题是:

  1. 3 的正确 MySQL 是什么?
  2. 它是如何与 1 和 2 集成的?

提前致谢,如果您需要更多信息,请告诉我。

4

1 回答 1

2

要获取您想要的信息,您需要将 xx_questions 加入到 xx_users。类似以下的内容会返回与三个条件中的任何一个匹配的问题:

select *
from xx_questions q join
     xx_users u
     on q.user_id = u.user_id
where q.user_id in (<implode(',', $friend_ids_arr)>) or
      q.user_id = '$user' or
      u.location = (select location from xx_users where USER_ID = $user)

我把它写得更像 SQL 而不是字符串,所以它更容易阅读。

于 2012-12-17T19:44:25.673 回答