This is what I am trying to accomplish:
To determine what type of work is most bountiful for my company, i am trying to create a query and report titled “Hours Against Each WorkCode” that includes a summary of Hours worked against each WorkCode. Display WorkCodeID, WorkCodeDescr, and HoursWorked (using HOURS and WORKCODES tables)
This is what i have and i am getting a ambiguous column error for workcodeID which is in both tables. I feel like i have to join them somehow. HELP!
This is what i have
USE tisds5Project
SELECT WorkCodeID, WorkCodeDescr, HoursWorked
FROM tblHOURS, tblWORKCODES
ORDER BY HoursWorked, WorkCodeID
To determine what type of work is most bountiful for my company, i am trying to create a query and report titled “Hours Against Each WorkCode” that includes a summary of Hours worked against each WorkCode. Display WorkCodeID, WorkCodeDescr, and HoursWorked (using HOURS and WORKCODES tables)
This is what i have and i am getting a ambiguous column error for workcodeID which is in both tables. I feel like i have to join them somehow. HELP!
This is what i have
USE tisds5Project
SELECT WorkCodeID, WorkCodeDescr, HoursWorked
FROM tblHOURS, tblWORKCODES
ORDER BY HoursWorked, WorkCodeID
Comment