All databases have date manipulation functions built in. They are not entirely portable. Many people store a 'date' as unix epoch time which is a 4 byte int, easy to sort, easy to compare, easy to mamipulate. If you really want to use stringified dates and then perform essentially integer operations on them I would suggest using the RDBS to do the work for you but you will have portability issues. On SQL 7....

You can use the DATEDIFF function. SELECT DATEDIFF(d, @HireDate, getdate()) d is a date part indicator for the day @HireDate can be an inserted parameter (like with a stored proc) or tr +aded out for a column in a regular select expression. getdate() is a function that gets the current date. You can do non platform independent SQL like: SELECT id, store_date FROM some_table WHERE store_date >= date_add(now(), interval -3 month)

See Compare Oracle and SQL dates as Oracle is different.

cheers

tachyon


In reply to Re: Help with Dates--No Test System! by tachyon
in thread Help with Dates--No Test System! by 4k9kidz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.