I keep a record of logins in a table. I have columns for id, ip, date and time. From that record of logins I wanna fetch logins made only in the last hour.
I\'m swe
Make use of the DATE_SUB() and Now() functions:
select count(*) as cnt from log where date >= DATE_SUB(NOW(),INTERVAL 1 HOUR);
Hope it helps you : )