我正在使用 Ruby on Rails 3.2.2 和 MySQL。我有一个has_many :through
ActiveRecord::Associations
生成以下 SLQ 查询的方法 (an):
SELECT DISTINCT `articles`.*
FROM `articles`
INNER JOIN `articles_comments_associations` `comment_associations_articles`
ON `comment_associations_articles`.`article_id` = `articles`.`id`
INNER JOIN `articles_comments_associations`
ON `articles`.`id` = `articles_comments_associations`.`article_id`
WHERE `articles_comments_associations`.`comment_id` = 223
AND (articles_comments_associations.user_id IN (2))
我想了解它的含义INNER JOIN 'articles_comments_associations' 'comment_associations_articles'
(注意:有多个数据库表语句INNER JOIN
)以及 SQL 查询是如何工作的,因为我没有名为的数据库表comment_associations_articles
。这是一个错误(即使它按预期工作)?