2011-11-05 24 views
0

是否有一种快速方法来确保您从MySQL JOIN查询返回的记录是唯一的?从mysql中保存返回的记录是唯一的

下面的代码可能会带回两次相同的类别。它的类别ID应该是不同的!

SELECT 
    exp_categories.cat_name, exp_categories.cat_id, exp_categories.cat_url_title 
    ,exp_category_posts.entry_id, exp_channel_titles.status 
FROM (exp_categories 
LEFT JOIN exp_category_posts 
     ON exp_categories.cat_id = exp_category_posts.cat_id) 
LEFT JOIN exp_channel_titles 
     ON exp_category_posts.entry_id = exp_channel_titles.entry_id 
WHERE exp_categories.group_id = 2 
    AND exp_category_posts.entry_id IS NOT NULL 
    AND exp_channel_titles.status = 'open' 
ORDER BY RAND() 
LIMIT 2 

回答

0
SELECT 
    exp_categories.cat_name, exp_categories.cat_id, exp_categories.cat_url_title 
    ,exp_category_posts.entry_id, exp_channel_titles.status 
FROM (exp_categories 
LEFT JOIN exp_category_posts 
     ON exp_categories.cat_id = exp_category_posts.cat_id) 
LEFT JOIN exp_channel_titles 
     ON exp_category_posts.entry_id = exp_channel_titles.entry_id 
WHERE exp_categories.group_id = 2 
    AND exp_category_posts.entry_id IS NOT NULL 
    AND exp_channel_titles.status = 'open' 
    GROUP BY exp_categories.cat_id 
ORDER BY RAND() 
LIMIT 2 

编辑:添加要在GROUP BY鲜明子句将确保有只有1返回列。此外,ORDER BY RAND()在很大程度上气馁,请参阅:http://www.titov.net/2005/09/21/do-not-use-order-by-rand-or-how-to-get-random-rows-from-table/

1

如果我知道你需要什么,你可以与关闭查询:

GROUP BY exp_categories.cat_id 
ORDER BY RAND() 
LIMIT 2 
1

这里的问题是,你要加入单因此您将看到与“许多”表中的记录一样多的行。如果您只想为每个类别带回一行,则只需要查询类别或决定要使用什么条件从exp_category_posts中选择单个值。

一个示例选项是查询类别中最近的帖子,并加入该结果集而不是exp_category_posts。

相关问题