Query doesn't return expected results

J

Jen

Hi Jon,

What you need is an Outer join. It would look something
like this:

SELECT TBL_ISSUES.*, TBL_ACTION_ITEMS.*
FROM TBL_ISSUES LEFT OUTER JOIN TBL_ACTION_ITEMS ON
TBL_ISSUES.ISSUE_ID = TBL_ACTION_ITEMS.ISSUE_ID;

Regards,
Jen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top