SQL hints

You may post here if you are having problems with Winlog32 that others may be able to help you with. You may also report bugs so that the author may act upon them.
Post Reply
N5PHT
New user
Posts: 2
Joined: Thu Feb 28, 2013 7:06 am

SQL hints

Post by N5PHT »

I have found another SQL that works well for searching the log for hams that I have had over 'x' qsos with over the years! Neat as I have been trying to find that out for awhile.

This works: (30 qsos in this example)

SELECT callsign,COUNT(*) FROM log
GROUP BY callsign HAVING COUNT(*)>30
Post Reply