Hi,
First, I'd like to thank the authors of sqlite administrator for making their software publicly available for free.
I also write this message to let you know that the "having" keyword is not syntax-highlighted in the SQL editor. I suppose it should be.
(I am using 0.8.3.1 public beta)
Rémi
"having" keyword not syntax highlighted
Moderators: gto, EgonHugeist, Orbmu2k
Thanks. "having" is a kind if "where" that filters results after "group by":Orbmu2k wrote:Iam not sure how to use the "having" keyword but i will consider this in the next version
Code: Select all
select poster_id, count(message_id)
from who_posted_what
group by poster_id
having count(message_id) > 2