我需要做的是選擇評論詳細信息以及對評論採取的最後一項操作;我有3個表:SQL Server:根據多對多關係中的最新ID進行選擇
評論
CommentID, commentText, userID, date_posted
行動
ActionID, action_taken,userID,date_actioned
和CommentJoinAction
id,ActionID,CommentID
可以有一個評論,但評論的許多行動。
我的SQL是尋找類似:
Select /*snip comment details and such*/
From Comment
Inner Join (select max(actionid) from commentjoinaction) as cja on /*blah cause you know from reading this, it won't work*/
那麼它是什麼,我可以這樣做,我總是拿起評論最新commentAction。
千恩萬謝
完美的作品,正是我一直在尋找。我正在走上這條路,但沒有完成它。非常感謝。 – Jarede 2011-03-11 09:28:11