Home Forums SQL Server 2008 T-SQL (SS2K8) pulling records from a table between date ranges in another table RE: pulling records from a table between date ranges in another table

  • OlyKLin (3/17/2014)


    This seems simple enough but for some reason, my brain isn't working.

    I have a lookup table:

    Table A: basically dates every 30 days

    1/1/2014

    2/3/2014

    3/3/2014

    4/3/2014

    I have Table b that has records and dates created assocated with each record

    I want all records that fall between the 1st 30 days to have an additional column that indicates 30

    union

    records with additional column indicating 60 days that fall between the 30 and 60 day

    union

    records with additional column indicating 90days that fall between the 60 and 90 day mark.

    Is there an easy way to do this?

    Pretty sparse on the details here but why not just add this column to your lookup table?

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/