Hi all,
I'm currently writing some registration software that will do some reporting on the information it receives. One thing the client wants is to see totals of each way a user can register for their event. The ways are: online, phone, and onsite (register at the event). Now, each user can register multiple times (for seperate itinerary items) using each of the three ways to register. what the client wants to know is how they registered FIRST. Trransactions are separated into batches, so we will have the phone registrants seperated from the online ones, etc.
My question is: will i be able to safely determine the method used be each user to register their FIRST time? If so, how would I do that? I'll leave a sample of my table structure below.
Transactions
Pid - primary key
attID - foreign key
BatchID - Foreign key
Timestamp
Amount
BatchTypes
--------------
btypeID - primary key
BatchType
Batch
-------------
BatchID - primary key
BatchType - foreign key
ReceivedDate
DepositDate
thanks everyone....
-Phil Schroeder