If I wanted records from two different tables where only records from table1's Primary Key equal table2's Foreign Key, which FROM statement would expect to see
A) table1 INNER JOIN table2 ON table1.PrimaryKey = table2.ForeignKey
B) table1 INNER JOINS table2 ON table1.PrimaryKey = table2.ForeignKey
C) table1 OUTER JOIN table2 ON table1.PrimaryKey = table2.ForeignKey
D) table1.PrimaryKey INNER JOIN table2.ForeignKey