Why wont this query run and how would you write it correctly? Major hint: try and run the query (use the database attached to Week 2's lecture) ...
you'll get an error message that should explain:
SELECT isbn
FROM books INNER JOIN order_lines ON books.isbn = order_lines.isbn;
This solution demonstrates an inner join when the tables involved contain fields with the same name.