ERROR: Table 'health_articles_articles.ams_articles' doesn't exist
---
SELECT * FROM ams_articles
INNER JOIN ams_users ON user_id = article_author_id
WHERE article_state = 1
AND MATCH (article_tags) AGAINST ('+__career__ ' IN BOOLEAN MODE) ORDER BY article_date DESC LIMIT 0, 10
---
---
SELECT COUNT(*) AS found_rows FROM ams_articles
WHERE article_state = 1 AND MATCH (article_tags) AGAINST ('+__career__ ' IN BOOLEAN MODE)
---