How can i write the following query using Kohana ORM v 2.x?
select k.* from kingdomprojects k
where region_id in
( select id from regions where kingdom_id = 1)"
Are subqueries are not supported in kohana v2.x ORM?
Thanks.
How can i write the following query using Kohana ORM v 2.x?
select k.* from kingdomprojects k
where region_id in
( select id from regions where kingdom_id = 1)"
Are subqueries are not supported in kohana v2.x ORM?
Thanks.
Copyright © 2021 Jogjafile Inc.
I think your best bet is to do a plain-old regular query.
In Kohana 3, you could ask the result to be an object and give the name of your ORM model, like so:
Kohana 3 Database documentation: subqueries