I am attempting to display several columns of tableX data when the value of a specific column matches that of the corresponding column in tableY.
Imagine we have 2 tables: one named person containing a column named membershipid and the other named taskscontaining a column named memberid. In this case, the condition for display a record would be the following:
membershipid on person = memberid on tasks
Does this require the use of a JOIN clause or can I still use the WHERE keyword for this?
Thanks for taking a look.