I love
EDIT: This is a challengecompletely new take on the solution, so here using no temp tables or strange sub-sub-sub queries. However, it will ONLY work on SQL 2005 or newer, as it uses the "pivot" command that is new in that version.
The fundamental problem is the desired pivot from a set of rows (in the data) into columns in the output. While noodling on the issue, I recalled that SQL Server now has a "pivot" operator to deal with this.
This works on SQL 2005 (should work on 2000 also)only, using the Northwind sample data.
-- I picked this one because he's got he has products that he's he ordered 4 or more times-- Doing this to fake out the system - all orders are from 10+ years ago-- If we were using current data, I would just use getdate() insteaddeclare @currentDate datetimeset @currentDate = dateadd(year, -10, getdate())-- Declare a local "working" tabledeclare @productsOrdered table CustomerID nchar(5)select c.CustomerID, ProductID intp.ProductName, FirstOrderDate datetimeproducts_ordered_by_cust.FirstOrderYear, LatestOrderDate1 datetimelatest_order_dates_pivot.LatestOrder1 as LatestOrderDate, LatestOrderDate2 datetimelatest_order_dates_pivot.LatestOrder2 as SecondLatestOrderDate, LatestOrderDate3 datetimelatest_order_dates_pivot.LatestOrder3 as ThirdLatestOrderDate, LatestOrderID int'If I had a comment field it would go here' as LatestOrderComment, LastYearIncome moneyisnull(last_year_revenue_sum.ItemGrandTotal, primary key clustered (CustomerID, ProductID)0) as LastYearIncome -- First, get Find all of the unique customer/product combinations for this products ordered by customerinsert into @productsOrdered , along with first year product was ordered CustomerID, ProductID) select distinct c.CustomerID, p.ProductID datepart(year, min(o.OrderDate)) as FirstOrderYear join Products p on p.ProductID = od.ProductIDwhere group by c.CustomerID= @customerId-- Next, do our first round of updates od.ProductID ) products_ordered_by_cust -first order date, - Find the grand total for product purchased within last order year - note fudged date , last order IDset FirstOrderDate = x.OrderDate, LatestOrderDate1 = x.LastOrderDate, LatestOrderID = x.LastOrderIDfrom @productsOrdered po below (Northwind) min(o.OrderDatesum(cast(round((od.UnitPrice * od.Quantity) as OrderDate- ((od.UnitPrice * od.Quantity) * od.Discount), max(o.OrderDate2) as LastOrderDate, max(o.OrderIDmoney)) as LastOrderID join @productsOrdered p on p.ProductID = od.ProductID -- The Northwind database only contains orders from 1998 and p.CustomerID earlier, otherwise I would just use getdate() where datediff(yy, o.OrderDate, dateadd(year, -10, getdate())) = o.CustomerID ) x last_year_revenue_sum on po.CustomerID last_year_revenue_sum.CustomerID = x.CustomerID products_ordered_by_cust.CustomerID and po.ProductID last_year_revenue_sum.ProductID = x.ProductID -- Using last order date, now get THIS is where the previous order datesset LatestOrderDate2 = x.LastOrderDatefrom @productsOrdered po magic happens. I will walk through the individual pieces for you select o.CustomerIDCustomerID, od.ProductIDProductID, max(o.OrderDatemax([1]) as LastOrderDate from Orders o join [Order Details] od on od.OrderID = o.OrderID join @productsOrdered p on p.ProductID = od.ProductID and p.CustomerID = o.CustomerID and o.OrderDate < p.LatestOrderDate1 group by o.CustomerIDLatestOrder1, max([2]) x on po.CustomerID = x.CustomerID and po.ProductID = x.ProductIDas LatestOrder2, max([3]) as LatestOrder3 -- Using previous For all orders matching the customer and product, assign them a row number based on the order date, now get descending -- So, the third order datesset LatestOrderDate3 = x.LastOrderDatefrom @productsOrdered po join ( most recent is row # 1, next is row # 2, etc. select o.CustomerID, od.ProductID, max(o.OrderDateo.OrderID, o.OrderDate, row_number() over (partition by o.CustomerID, od.ProductID order by o.OrderDate desc) as LastOrderDate from Orders o join [Order Details] od on od.OrderID = o.OrderID join @productsOrdered p on p.ProductID = od.ProductID and p.CustomerID = o.CustomerID and o.OrderDate < p.LatestOrderDate2 group by o.CustomerID, od.ProductID ) x on po.CustomerID = x.CustomerID and po.ProductID = x.ProductID -- FinallyNow, get the grand total for all items ordered in produce a pivot table that contains the past yearset LastYearIncome = x.ItemGrandTotalfirst three row #s from @productsOrdered po join ( select o.CustomerID, od.ProductIDour result table, sum(cast(round((od.UnitPrice * od.Quantity) -- pivoted into columns by customer and product (od.UnitPrice * od.Quantity) * od.Discount), 2max(OrderDate) as money)for RowNumber in ([1], [2], [3]) Orders o join [Order Details] od on od.OrderID = o.OrderID join @productsOrdered p on p.ProductID = od.ProductID and p.CustomerID = o.CustomerID where datediff(yy, o.OrderDate, @currentDate) = 0 group by o.CustomerIDCustomerID, od.ProductID ) x latest_order_dates_pivot on x.CustomerID products_ordered_by_cust.CustomerID = po.CustomerID latest_order_dates_pivot.CustomerID and x.ProductID products_ordered_by_cust.ProductID = po.ProductID -- Our temp table is complete - now generate the "output" data Finally, join back to be returned our other tables to the reportselect c.CustomerID, p.ProductName, datepart(year, po.FirstOrderDate) as FirstOrderYear, po.LatestOrderDate1 as LatestOrderDate, po.LatestOrderDate2 as SecondLatestOrderDate, po.LatestOrderDate3 as ThirdLatestOrderDate, 'Comment' as LatestOrderComment, isnull(po.LastYearIncome, 0) as LastYearIncomefrom @productsOrdered po get more details join Orders o on o.CustomerID = po.CustomerID products_ordered_by_cust.CustomerID and o.OrderID o.OrderDate = po.LatestOrderIDwhere c.CustomerID = @customerIdorder by CustomerID, p.ProductID