Error in query: SELECT *
FROM authors, content, publishers, topics, translations, languages
WHERE
translations.trans_title = '' and
translations.lang_code = 'en' and
translations.content_id = content.content_id and
content.author_id = authors.author_id and
content.topic_id = topics.topic_id and
content.pub_id = publishers.pub_id and
languages.lang_code = translations.lang_code
ORDER BY translations.trans_date DESC
;.