Apr 13, 2006 #1 bxgirl Programmer Nov 21, 2005 75 US Using mysql 4.0, which doesn't support DATEDIFF I'd like to compare two dates and check if the difference is 6 weeks or greater. How can I do this? Thanks in advance. bxgirl
Using mysql 4.0, which doesn't support DATEDIFF I'd like to compare two dates and check if the difference is 6 weeks or greater. How can I do this? Thanks in advance. bxgirl
Apr 14, 2006 #2 r937 Technical User Jun 30, 2002 8,847 CA select ... from ... where to_days(date1) - to_days(date2) > 42 r937.com | rudy.ca Upvote 0 Downvote
Apr 14, 2006 Thread starter #3 bxgirl Programmer Nov 21, 2005 75 US Thanks..that did it. Upvote 0 Downvote