I have a table called customer where the master details like name,address etc... my second table contains the details of the downloads he made from my website... for each download I capture the document's shortname like dwn1,dwn2,dwn3 etc in a field called download_details...
Now I need to prepare a report where I need to track down the no of downloads for each user on a particular day. I join the two tables by matching the emai id and taking the record.
my req should be like this
Date name email addre state country dwn1 dwn2 dwn3....
20/04/ Test t@t.c tst t t 2 0 3
the corresponding details in dwn_details will be like
20/04 t@t.c dwn1,dwn3
20/04 t@t.c dwn1,dwn3
20/04 t@t.c dwn3
First I join the tables by checking for the data for the dates entered by the user. and then within the recordset I query for the download table matching the email and date and by applying single level control break I achieve the above result..
is there any other better alternative??
hope I have explained well