限制wpdb查询的结果

时间:2012-10-28 10:53:47

标签: mysql wpdb

此代码仅显示当前类别中的标记,但是它获取所有标记(数百个),因此,我需要限制返回结果的数量并使其随机化。

如何使此查询只能随机获得20个结果?

/* Retrieve all tags from posts in selected categories */

$cats = array('beaches','mountains');  // Must be an array even if only one category
$cats_string = "'" . implode($cats,"','") . "'";
$sql = <<<EOSQL
SELECT DISTINCT t.*
FROM $wpdb->posts p
JOIN $wpdb->term_relationships tr ON p.ID = tr.object_id
JOIN $wpdb->term_taxonomy tt ON (tr.term_taxonomy_id = tt.term_taxonomy_id
   AND tt.taxonomy = 'post_tag')
JOIN $wpdb->terms t ON tt.term_id = t.term_id
WHERE
   p.ID IN (
      SELECT p2.ID
      FROM $wpdb->posts p2
      JOIN $wpdb->term_relationships tr2 ON p2.ID = tr2.object_id
      JOIN $wpdb->term_taxonomy tt2 ON (tr2.term_taxonomy_id = tt2.term_taxonomy_id     AND tt2.taxonomy = 'category')
  JOIN $wpdb->terms t2 ON (tt2.term_id = t2.term_id AND t2.name IN ($cats_string))
  WHERE p2.post_type = 'post'
  AND p2.post_status = 'publish'
  AND p2.post_date <= NOW()
  )
  EOSQL;

$terms = $wpdb->get_results($sql);

// print_r($terms);

echo "<br />";
foreach ($terms as $term) {
   echo "ID:$term->term_id NAME:$term->name SLUG:$term->slug<br />";
}

由于

1 个答案:

答案 0 :(得分:2)

你可以试试ORDER BY RAND() LIMIT 20,这取决于你的桌子大小,这可以在适当的时间运行。有关何时避免order by rand()逻辑,请参阅here一些详细信息。像建议的那样,在指定的帖子中,另一种方法是检索所有条目并随机选择20个条目,而不是使用mysql。