Viewing 5 posts - 1 through 5 (of 5 total)
sorry, if i've confused you.
customers can and do have multiple items in an order. but customers won't have more than one order in a day.
the data reduction has been...
October 6, 2008 at 11:50 pm
i have got the table i want by running something like
SELECT billdate,custcode,custname,
MAX(CASE WHEN Seq=1 THEN brand ELSE NULL END) AS brand,
MAX(CASE WHEN Seq=1 THEN item ELSE NULL END)...
October 6, 2008 at 10:06 am
Hi Jeff, below are the codes. I have selected the top 100 rows only, there are about 600,000 rows in the dataset.
1. I just need each row in the dataset...
October 5, 2008 at 9:14 am
i have attached a sample, it's faster. thanks!
October 5, 2008 at 8:12 am
Market basket analysis starts with studying all the items in a single purchase/order by a customer. And that's the first thing I'm trying to do with this dataset.
The maximum number...
October 5, 2008 at 12:01 am
Viewing 5 posts - 1 through 5 (of 5 total)