<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Jun 29, 2012, at 4:34 AM, Ivan Smahin wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><div><blockquote type="cite">BTW, I'm open to any other suggestion about how to determine, in SQL, if a record was added within a certain time X before the present. That is<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">select * from t1 WHERE dateAdded > current time - 14 days<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">Jon<br></blockquote><br>select * from t1 where datediff( now(), f1, 'day') > 14<br></div></span></blockquote></div><br><div>Sorry, but it's not working. I tried this</div><div><br></div><div>datediff( now(), 'dateadded', 'day') > 14</div><div><br></div><div>(and variants thereof) with no success.</div><div><br></div><div>What is "now" for Valentina on a Mac. Is it the seconds after 1/1/1904 (which is how Macs deal with dates)? This is why we had the problem in the first place, because we had to subtract the date 1/1/1904 from now() to do the comparison.</div><div><br></div><div>Would you please try this yourself? It shouldn't be this difficult.</div><div><br></div><div>We can pursue this off-list.</div><div><br></div><div>Thanks,</div><div><br></div><div>Jon</div></body></html>