Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Kohana ORM v 2.x を使用して次のクエリを作成するにはどうすればよいですか?
select k.* from kingdomprojects k where region_id in ( select id from regions where kingdom_id = 1)"
サブクエリは kohana v2.x ORM でサポートされていませんか?
ありがとう。
あなたの最善の策は、昔ながらの通常のクエリを実行することだと思います。
Kohana 3 では、次のように、結果をオブジェクトにして、ORM モデルの名前を付けることができました。
->as_object('company')
Kohana 3 データベースのドキュメント: サブクエリ