Hello, the following is what I want to do: > SELECT * > FROM testing > GROUP BY foo > HAVING COUNT(foo) > 1 but it does not work. ```php $mapperTesting->all()->group(['foo'])->having(['COUNT(foo)' => '> 1'])->toArray(); ``` Regards,