DR_LaRRY_PEpPeR means that the LEFT JOIN will result in the Authorid column value being NULL where there's no matching Authourid in the Authors table.
Try the following. It should return all Content rows and each row will have either NULL's for both the Authorid and AuthorName columns, for Content without an Author, or the relevant data, for Content with an Author.
Code:
SELECT c.id,
c.header,
c.summary,
c.maintext,
c.authorid,
a.authorname
FROM content c LEFT OUTER JOIN authors a ON c.authorid = a.authorid
WHERE pageid = <page number>
Bookmarks