Instruction
Good! Now it's time to challenge your brand-new view.
Exercise
Use a join to select first_name and last_name of current_lecturer together with their current position title. Use the diagram below to help you get around the tables:

Stuck? Here's a hint!
Type:
SELECT l.first_name, l.last_name, p.title FROM current_lecturer l INNER JOIN job_history j ON j.lecturer_id = l.id JOIN position p ON j.position_id = p.id WHERE end_date IS NULL;



