Hey everyone,
I am putting this out here incase anyone might have some MySQL experience that I could borrow.
I need to create a query in a MySQL database that references 2 tables
table one has two columns that I need
Column A is a list of transactions
Column B is a list of employees
Table 2 has several columns one (call it y) of which matches column A from table 1
What I need is all records from table 2 where column Y matches an item on table 1:column A and Table2:Date = given date
my thought at a query is something like
SELECT * FROM TABLE2 WHERE ColumnY IS LIKE Table1:ColumnA and Date=today;
Basically I want to know how many transactions someone did on a given day but the system doesn't store the userID with the dates...
It has a report tool but something has become corrupted and the official fix is to re-install but it wipes the database(restoring from the old database carries the same corruption, but I can get command line access with out problems)

