One column in a table in my MySQL database stores date in Unix format.
I am trying to retrieve all rows where the date is later than a specific date. How do I write a query to do this? I want something like:
SELECT * FROM table_name WHERE date > "yyyy-mm-dd";
Thanks in advance.
use
FROM_UNIXTIME