''Complex'' statements to work out churn

  • Hi. I have a need to create a report based on user *churn* on our system.

    I have a list of unique UID's for each month that I want this for - Dec 05 until now... What I need to figure out is the amount of unique users in Dec 05, then see how many of those are still active in Jan 06, Feb 06.. and so on...

    Also, all the new UID's in Jan 06, Feb 06 need to be calculated the same way for the months that follow until now...

    Does this make sense?

    Is it possible in SQL?

    Where on earth do I start?

    Thanks in advance,

    David

  • with out a SQL statement I would think it should look something like this

    select UID FROM Tbl_UID WHERE

    UID IN (Select UID FROM tb_UID Where UID_Active = 1 and login_Date >= 1/1/2006)

    Also this is not a reporting question it is more T-SQL.  You will get more hits there

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

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