E
E
entermix2018-10-06 21:26:55
MySQL
entermix, 2018-10-06 21:26:55

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();

The result will be the same, but the second query looks more attractive. The second query won't work with where because:
SELECT user_session_statuses.name AS session:status:name

This is just an example, but there are many more complex queries, and since Having does a post-filtering of the data, I have a question, what are the pitfalls of using having instead of where?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
C
Cheypnow, 2018-10-06
@entermix

1. Where is faster
2. If you use grouping, then Where will be executed before grouping, and Having after. own having and intended to be used with grouping

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question