How to select a single record in a left join

前端 未结 8 1054
我寻月下人不归
我寻月下人不归 2021-02-01 02:40

I need to select a specific model from the Models table using its key ModelID. I also need to add a blurb of content from the Model_Content table. The Models_Content table, howe

8条回答
  •  情深已故
    2021-02-01 03:15

    Change your JOIN to:

    LEFT JOIN (SELECT ModelID, MAX(Content) as Content FROM Models_Content GROUP BY ModelID)

    This is assuming you don't care which Content you get.

提交回复
热议问题