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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
COUNT(DISTINCT column_name)
There's Count method that is generated for a table:
Count
Count(ctx context.Context, exec boil.ContextExecutor) (int64, error) // performs COUNT(*)
It'd be useful to have CountDistinct method:
CountDistinct
CountDistinct(ctx context.Context, exec boil.ContextExecutor, column string) (int64, error) // performs COUNT(DISTINCT column)
The text was updated successfully, but these errors were encountered:
If you send in a PR, I'll be happy to review.
Sorry, something went wrong.
No branches or pull requests
There's
Count
method that is generated for a table:It'd be useful to have
CountDistinct
method:The text was updated successfully, but these errors were encountered: