Re: How? Select every saturday between two dates
Posted by: Rick James
Date: March 19, 2011 12:27AM

SELECT count
    FROM tbl
    WHERE date >= '2011-01-01'
      AND date <  '2012-01-01'
      AND WEEKDAY(date) = 5;   -- Saturday

Options: ReplyQuote


Subject
Written By
Posted
Re: How? Select every saturday between two dates
March 19, 2011 12:27AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.