I'm trying to select from two tables using something like the following:
"SELECT books.title, books.blurb, dates.start_date FROM books, dates WHERE books.book_id=" . $_GET['book_id'] . " AND books.book_id=dates.item_id AND dates.date_type='book'";
But if there's no date for a book, nothing gets selected.
How would I rephrase this so it will select the requested book even if there's no date assigned to that book?