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 数据库文档:子查询