Hi,
Say I have two tables, visitTbl which is used to keep track of each web visit (by users) and transactionTbl, which is used to keep track of each transaction made by users.
visitTbl:
VisitDate
UserId
transactionTbl:
TransactionDate
UserId
TransactionType
I'd like to create a report that pulls for a particular userid how many visits and how many transactions he makes each month. How can I write this query?
Thanks!
Regards,
Min
Say I have two tables, visitTbl which is used to keep track of each web visit (by users) and transactionTbl, which is used to keep track of each transaction made by users.
visitTbl:
VisitDate
UserId
transactionTbl:
TransactionDate
UserId
TransactionType
I'd like to create a report that pulls for a particular userid how many visits and how many transactions he makes each month. How can I write this query?
Thanks!
Regards,
Min