Continue the SQL command with the condition clause to show a list of all courses and the first, middle and last names for their coordinator, only for the coordinators having the last name Johnson.All joining conditions must be specified in the from clause. Do not use aliases for tables.Complete only the part marked with ____ . Use upper case for SQL keywords. Include only what is needed, avoid specifying optional elements.SQL Command:SELECT TITLE, FIRST_NAME, MIDDLE_NAME, LAST_NAMEFROM INSTRUCTOR INNER JOIN COURSE ON COURSE.CODE=INSTRUCTOR.CODE_____________________ ;