Continue the SQL command with the column clause to show a list of the first, middle and last names for all course coordinators and the title of the course they coordinate.

All joining conditions must be specified in the from clause.
Complete only the part marked with ____ . Use upper case for SQL keywords. Include only what is needed, avoid specifying optional elements.

SQL Command:
SELECT FIRST_NAME, MIDDLE_NAME, LAST_NAME, TITLE
_____________________
condition-clause;