Answer the question
In order to leave comments, you need to log in
Where VS Having?
Using Kohana ORM, you can make the following selections:
$session = ORM::factory('User')
->with('session')
->with('session:status')
->where('user_session_status.name', '=', 'active')
->find_all();
$session = ORM::factory('User')
->with('session')
->with('session:status')
->having('session:status:name', '=', 'active')
->find_all();
SELECT user_session_statuses.name AS session:status:name
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question