select multiple joins to display using more than 3 tables [closed]

Select c.Id, c.Name from Client c 
    Join ClientArticle ca on c.ID = ca.ClientID
    Join Article a on ca.ArticleID = a.ArticleId
    Where a.Value="Y"

You will need to play with the join types depend on the results you want. IE. Left Join, Inner Join etc

Leave a Comment