定義された属性を持つ人をプルできるクエリを作成しようとしています。
+----------------------------------------------------+
TABLE: Person
+----------------------------------------------------+
owner_id | name
1 | kevin
2 | lee
+----------------------------------------------------+
TABLE: Attributes
+----------------------------------------------------+
id | owner_id | attributes_id
1 | 1 | 52
2 | 1 | 53
3 | 1 | 23
4 | 2 | 52
SELECT Person.name FROM Person LEFT JOIN `Attributes` ON `Attributes`.`owner_id` = `Person`.`owner_id` WHERE Attributes.attributes_id = 52 AND Attributes.attributes_id = 53;
そのwhere句を使用してもowner_id1が返されませんでした。誰かが私を正しい方向に向けることができれば、私は最も素晴らしいでしょう!