SQL Select data in the last 1 minutes – Mysql
i am currently practicing my SQL skills. I wanted to get all data in the past 1 minutes. The query is SELECT * FROM menfesses WHERE created_at >= NOW() - INTERVAL 1 MINUTE; But somehow, it returns all data. I…