I'm horrible with table joins so I need some help.
Table A has an ID column
Table B sometimes crosses table A by having a column with Table As ID.
Can I select items from Table A only if they are crossed on Table B?
Example:
Table A:
ID | NAME
1 | Item 1
2 | Item 2
3 | Item 3
Table B:
ID | Table A ID| INFO
1 | 2 | Information
A query that will only pick Item 2.
Thanks for any help.