I have a MySQL database having column time containing Unix timestamp like 1482858013.
Now I want to make a MySQL query which should show only the last five minute old records from the database. How can I do this? Thanks in advance.
I have a MySQL database having column time containing Unix timestamp like 1482858013.
Now I want to make a MySQL query which should show only the last five minute old records from the database. How can I do this? Thanks in advance.
Use
DATE_SUB()
to get the time 5 minutes ago, andUNIX_TIMSTAMP()
to convert that to a numeric timestamp.