Interesting or fun queries / reports? #453
GeekNJ
started this conversation in
Show and tell
Replies: 1 comment
-
I find the swings interesting with which birds are detected. Birds that are once high hitters disappear, possibly migrating out, and are replaced by something else. Below shows birds, sorted by number of detections, when they were last detected, and days since they were last detected.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm a newer user and one of the items I was looking to see is the first detection for each species, as I didn't notice one available. With the Tools / Database Maintenance / SQL Command page, we have the ability to query the database used on the pi. I created the below that shows the first date each species was identified. Anyone else have any interesting queries?
select Com_Name as 'Common Name', min(Date) as 'First Detection'
from detections
group by Com_Name
order by min(Date) desc;
Beta Was this translation helpful? Give feedback.
All reactions