Last Updated: February 25, 2016
·
339
· shairontoledo

How many rows in the last minute?

For postgresql:

select count(*) from table_name where created_at > (now() - interval '1 min');