I have to (2) tables, Events and Errors.
Events
-------------
RecordNumber
EventDate
EventType
EventProblem
EventSolution
Errors
-------------
Event_RecordNum ber
ErrorType
When I am navigating the Events table, I want to check the Errors table to
see if an error exists for the current event.
Select RecordNumber, EventDate, EventType, EventProblem, Event Solution,
Event_RecordNum ber, ErrorType
from Events, Errors
where RecordNumber = Event_RecordNum ber
But this query returns zero rows.
Any help ?
Thanks,
PW
Comment