I have four tables
Tag=>id,tag_name Image=>Id,Image_name TagImage=>Id,tag_id,Image_id ImageStudent=id,Image_id,student_id
And I want to find a record using student id and tag name. What relationship do I use?
| show 2 more comments |
|
Might be better to use a UNION with a query like this, here it is with the necessary joins.
|
|||||||||||
|
Tag HABTM ImageandStudent HABTM Image(there's noStudentmodel provided, but it has to be there). TheTagImageandImageStudentare "magic" models that create HABTM relationships in Cake's ORM:Tag hasMany TagImage/TagImage belongsTo TagandImage hasMany TagImage/TagImage belongsTo Image`. – Daniel Wright May 13 '10 at 14:17