We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, the following is what I want to do:
SELECT * FROM testing GROUP BY foo HAVING COUNT(foo) > 1
but it does not work.
$mapperTesting->all()->group(['foo'])->having(['COUNT(foo)' => '> 1'])->toArray();
Regards,
The text was updated successfully, but these errors were encountered:
I am really sorry for the late reply, but have you tried this?
$mapperTesting->all()->group(['foo'])->having(['COUNT(foo) >' => '1'])->toArray();
It translates to:
GROUP BY test_posts.status HAVING COUNT(status) > ?
Sorry, something went wrong.
No branches or pull requests
Hello, the following is what I want to do:
but it does not work.
Regards,
The text was updated successfully, but these errors were encountered: