Count keys different than all #162
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
Possible Feature
question
Further information is requested
Currently when we want to count it counts all elements, but the user may want to count only a specific key.
Currently it is possible to count a by using
SELECT #{key_to_count,} FROM key WHERE {...} COUNT
instead ofSELECT * FROM key WHERE {...} COUNT
. However, it may be better to useSELECT * FROM key WHERE {...} COUNT #{key_to_count,}
The text was updated successfully, but these errors were encountered: