SQL query error: Unknown column 'Posts.BookId' in 'field list'
SQL: SELECT PostId, PostName, PostExcerpt, Event, News, Blog, RSS, ISBN13,
			Posts.DateCreated, AssetFiles.Filename, Posts.BookId, UseBookImage, Content.ContentId, TitleNameFull, SubTitle
			FROM Posts 
			LEFT JOIN Assets ON Assets.AssetId = Posts.AssetId
			LEFT JOIN AssetFiles ON AssetFiles.AssetId = Assets.AssetId
			LEFT JOIN Books ON Posts.BookId = Books.BookId
			LEFT JOIN Content ON Content.ContentId = Books.ContentId
			WHERE Posts.Published = 1 AND RSS = 1
			AND RSSChannelId = '1'
			ORDER BY DateCreated
