DataMapper ORMの初心者なので、複雑なクエリについて質問があります。
まず、簡略化されたデータオブジェクトを次に示します。
class User
property :id, Serial
property :login, String
has n, :actions
end
class Item
property :id, Serial
property :title
has n, :actions
has n, :users, :through => :actions
end
class Action
property :user_id, Integer
property :item_id, Integer
belongs_to :item
belongs_to :user
end
db内のデータは次のようになります。
+ ------- + + ------- + + ------- +
| Users | | Items | | Actions |
+ ------- + + ------- + + ------- +
| 1 | u1 | | 3 | i1 | | 1 | 4 |
| 2 | u2 | | 4 | i2 | | 1 | 3 |
| ....... | | 5 | i3 | | 1 | 4 |
+ ------- + | ....... | | 1 | 5 |
+ ------- + | 1 | 6 |
| 1 | 3 |
| ....... |
+ ------- +
したがって、たとえば、ユーザー1はいくつかのアイテムをN回表示しました。そして、私が理解できないこと、アイテムを選択する方法とユーザーに関連するそれらのアクション量。
たとえば、ユーザー1の結果は次のようになります。
+ -------------------- |
| Items (item_id, num) |
+ -------------------- |
| 3, 2 |
| 4, 2 |
| 5, 1 |
| 6, 1 |
+ -------------------- +
私のニーズに一致するPSの通常のSQLクエリ:
SELECT i.id, i.title, COUNT(*) as 'num'
FROM actions a
JOIN items i on i.id = a.item_id
WHERE a.user_id = {USERID}
GROUP by a.id
ORDER BY num DESC
LIMIT 10;
それで、これを行う方法と複雑なデータマッパークエリに関するドキュメントはありますか?