-
-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
count() problem when groupBy is used #180
Comments
Have you looked what the raw output is of both? Can you please post that too? |
Hi Raw query seems Ok
and with groupBy
both queries returns the same rows (in this case) but the first one is counted properly while the second one shows 1. |
Hi @mtarlac, can you please run this query in your database manually and see what it returns?
If it return |
Sure but it returns >1 rows since there are more than one order... |
So when querying manually it returns correct and when querying using Pixie
it returns 1?
…On Sat, Feb 17, 2018, 19:38 mtbl ***@***.***> wrote:
Sure but it returns >1 rows since there are more than one order...
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#180 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AA74L-mkFnKmFnspDvJydgZ23Z3AghWgks5tVtZLgaJpZM4R-RuO>
.
|
Yes.. Code: $no = $query->count();` In this example with and without "->groupBy('orders.id')" should return the same result since there are no Count, SUM or other aggregate functions. But in case you want to count (for example) items in order_items table and group them by order it doesn't work. |
I'll try to reproduce, thanks! |
Hello
Not sure am I missing something, but seems that count() doesn't work properly when groupBy is used
For example
$query = PB::table('orders') ->leftJoin('admins', 'admins.id', '=', 'orders.admins_id') ->select('orders.*', 'admins.first_name', 'admins.last_name');
$no = $query->count();
works but
$query = PB::table('orders') ->leftJoin('admins', 'admins.id', '=', 'orders.admins_id') ->select('orders.*', 'admins.first_name', 'admins.last_name')->groupBy('orders.id');
$no = $query->count();
doesn't work and returns 1 as count.
The text was updated successfully, but these errors were encountered: