-
Notifications
You must be signed in to change notification settings - Fork 13
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
Add Having clause #19
Comments
Thanks for the feedback! |
Thanks @mechatroner for the tip. Would you mind showing me an example of how to have two consecutive queries like you're suggesting? |
oh, wait. You may mean just get the results of the first query and then run another query on those results. I thought you were saying to do it with one rbql statement. |
Sometimes I need the ability to find duplicates in a CSV file. RBQL would be great for this if it supported the having clause.
Here's my example usage.
select a2, count(*) group by a2 where NR > 1 having count(*) > 1
BTW - RBQL is a great helper. Thanks for it!
I forgot to mention that I'm using
Rainbow CSV
invscode
.The text was updated successfully, but these errors were encountered: