Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm selecting all rows except those from last 24hs. Instead I'd like to select those which are not from today. I'm already getting the day from a datetime column using DATE().

How can I change the query to do it?

select Date, DATE(Date) AS Day
WHERE Date < DATE_SUB(CURDATE(),INTERVAL 1 DAY)
share|improve this question

2 Answers

up vote 0 down vote accepted

OP said:

I'd like to select those which are not from today

bfavaretto's solution:

SELECT Date, DATE(Date) AS Day
WHERE Date < CURDATE()

would answer the question:

I'd like to select those which date is before today

To properly answer OP's question this query should be run (assuming date is a datetime because of the OP's cast, I'm casting it to a date field, but the cast is unnecesary if Date is actually a date field):

SELECT Date, DATE(Date) AS Day FROM aTable
WHERE Date(date) != CURDATE()
share|improve this answer
1  
Though I could go with either method but I this is technically the correct answer. Thanks – Liso22 Mar 3 '12 at 23:52

It's easier than you think:

SELECT Date, DATE(Date) AS Day
WHERE Date < CURDATE()
share|improve this answer
1  
Beat me by a couple seconds. :) +1, and deleting my answer. – Ken White Mar 3 '12 at 1:25
@KenWhite, that happens to me a lot! – bfavaretto Mar 3 '12 at 1:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.