I store date as integer in my table
Now i wish to get all those records which are 1 day older
I use the following code. But it does not work
SELECT * from points where point_date < now() - interval 1 day
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try using
FROM_UNIXTIME()function and see how it works.