I have been trying all afternoon to try and achieve this with no success.

I have a db in with info on customers and the date that they purchase products from the store. It is grouped by a batch ID which I have converted into a date format.

So in my table I now have:

CustomerID|Date
1234      |2011-10-18
1234      |2011-10-22
1235      |2011-11-16
1235      |2011-11-17

What I want to achieve is to see the number of days between the most recent purchase and the last purchase and so on.

For example:

CustomerID|Date       |Outcome
1234      |2011-10-18 |
1234      |2011-10-22 | 4
1235      |2011-11-16 |
1235      |2011-11-17 | 1

I have tried joining the table to itself but the problem I have is that I end up joining in the same format. I then tried with my join statement to return where it did <> match date.

Hope this makes sense, any help appreciated. I have searched all the relevant topics on here.

link|improve this question

75% accept rate
What database engine? Oracle SQL server? mySQL ... and will customerID ONLY exist twice in your tables? – xQbert Nov 22 '11 at 19:13
@xQbert: TSQl = SQL server – Dan Andrews Nov 22 '11 at 19:18
SQL Sever, Thanks for your response Dan – Woody_1983 Nov 22 '11 at 19:28
@Dan TSQL <> SQL Server... Sybase had it first. webopedia.com/TERM/T/T_SQL.html And your answer doesn't work in Sybase :D – xQbert Nov 22 '11 at 19:45
1  
@xQbert: You (like me) are a dinosaur if you are using Sybase - or even know what it is. – Dan Andrews Nov 22 '11 at 20:00
feedback

1 Answer

up vote 2 down vote accepted

Will there be multiple groups of CustomerID? Or only and always grouped together?

DECLARE @myTable TABLE
(
    CustomerID INT,
    Date DATETIME
)

INSERT INTO @myTable
SELECT 1234, '2011-10-14' UNION ALL
SELECT 1234, '2011-10-18' UNION ALL
SELECT 1234, '2011-10-22' UNION ALL
SELECT 1234, '2011-10-26' UNION ALL
SELECT 1235, '2011-11-16' UNION ALL
SELECT 1235, '2011-11-17' UNION ALL 
SELECT 1235, '2011-11-18' UNION ALL
SELECT 1235, '2011-11-19'

SELECT  CustomerID, 
        MIN(date), 
        MAX(date), 
        DATEDIFF(day,MIN(date),MAX(date)) Outcome
FROM @myTable 
GROUP BY CustomerID

SELECT  a.CustomerID, 
        a.[Date], 
        ISNULL(DATEDIFF(DAY, b.[Date], a.[Date]),0) Outcome
FROM 
(
    SELECT  ROW_NUMBER() OVER(PARTITION BY [CustomerID] ORDER BY date) Row,
            CustomerID,
            Date
    FROM @myTable 
) A
LEFT JOIN 
(
    SELECT  ROW_NUMBER() OVER(PARTITION BY [CustomerID] ORDER BY date) Row,
            CustomerID,
            Date
    FROM @myTable 
) B ON a.CustomerID = b.CustomerID AND A.Row = B.Row + 1   
link|improve this answer
I plan to group them together, I have over a 1,000 customer ids which I should have put in my question above, apologies. Some customers have made over 200 purchases so th =e table gets quite big. – Woody_1983 Nov 22 '11 at 19:26
My answer should work – Dan Andrews Nov 22 '11 at 19:30
Thanks Dan, that looks like it works. Thanks for your time on this – Woody_1983 Nov 22 '11 at 19:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.