find out latest datetime

  • Hi,

    We have LastDateTime column in more than 1 tables. User will enter different values and updates datetime in different tables. Now I want to pull latest LastDateTime per user

    Table 1

    UserID, LastDateTime

    Table 2

    UserID, LastDateTime

    .....like this total 10 tables

    Thank you

  • If you will post table definitions, sample data in a readily consumable format (To do so click on the first link in my signature block), some one will answer your question with tested T-SQL

    By the way that link will display not only an article but sample T-SQL to supply what has been requested, so that you help those who want to help you.

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • --::create sample tables

    select *

    into #table1

    from

    (

    select 'User 1'[UserID], dateadd(dd, -1, getdate())[LastDateTime]

    union

    select 'User 2', dateadd(dd, -4, getdate())

    union

    select 'User 3', dateadd(dd, -8, getdate())

    union

    select 'User 4', dateadd(dd, -3, getdate())

    union

    select 'User 5', dateadd(dd, -5, getdate())

    ) a

    select *

    into #table2

    from

    (

    select 'User 4'[UserID], dateadd(dd, -3, getdate())[LastDateTime]

    union

    select 'User 4', dateadd(dd, -2, getdate())

    union

    select 'User 2', dateadd(dd, -1, getdate())

    union

    select 'User 1', dateadd(dd, -4, getdate())

    union

    select 'User 5', dateadd(dd, -3, getdate())

    ) a

    --::here...

    select UserID, max(LastDateTime)

    from

    (

    select UserID, LastDateTime from #table1

    union all

    select UserID, LastDateTime from #table2

    ) a

    group by UserID

    "Often speak with code not with word,
    A simple solution for a simple question"

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply