Hello. I am making a project on PHP i have 2 tables, a "member" table and an "attendance" table.
On the "member" table I have the fields "member_id", "first_name", "last_name"
On the "attendance" table I have "attendance_id", "date" , "member_id"
What I want to find out is if the person has attended 4 times on "any month". Meaning, check if the person has attended 4 times without me having to specify the month and having to run a query against the month. But 4 times on any month, it cannot be 4 times in 2 months but 4 times in 1 month. Thanks!