Hi @ all,I have a big problem with the performance of one of my queries.The performance of the following query is very low:Select * from RankingPassthroughsInner Join KeywordPassthroughs on RankingPassthroughs.Id = KeywordPassthroughs.RankingPassthroughIdInner Join KeywordPassthroughRankings on KeywordPassthroughRankings.PassthroughId = KeywordPassthroughs.IdInner Join Keywords on KeywordPassthroughs.KeywordId = Keywords.IdInner Join KeywordRankingsUrls on KeywordPassthroughRankings.UrlId = KeywordRankingsUrls.Idwhere KeywordPassthroughRankings.DomainId = 88
But if I reduce the query to Select * from RankingPassthroughsInner Join KeywordPassthroughs on RankingPassthroughs.Id = KeywordPassthroughs.RankingPassthroughIdInner Join KeywordPassthroughRankings on KeywordPassthroughRankings.PassthroughId = KeywordPassthroughs.IdInner Join Keywords on KeywordPassthroughs.KeywordId = Keywords.Idwhere KeywordPassthroughRankings.DomainId = 88
orSelect * from RankingPassthroughsInner Join KeywordPassthroughs on RankingPassthroughs.Id = KeywordPassthroughs.RankingPassthroughIdInner Join KeywordPassthroughRankings on KeywordPassthroughRankings.PassthroughId = KeywordPassthroughs.IdInner Join KeywordRankingsUrls on KeywordPassthroughRankings.UrlId = KeywordRankingsUrls.Idwhere KeywordPassthroughRankings.DomainId = 88
the performance is perfect.What's wrong with the first query?Thank you!