I’ve got a table with a schema like:
tblRecords:
RecordID | ResultID | RecordName
another table is tblResults:
ResultID | ResultTime | Result Date
tblRecords contains some records with ResultID that isn’t in tblResults.
What I’m trying to do is get all values from tblRecords where the ResultID is in tblResults.
Is that possible with a join?
Or have I got to use a subquery?
Yes it can be done. Try the query below: