1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'FROM
articles a
INNER JOIN articles_description ad ON a.articles_id = a...' at line 3
SELECT a.*, ad.*, au.*,
FROM
articles a
INNER JOIN articles_description ad ON a.articles_id = ad.articles_id INNER JOIN authors au ON a.authors_id = au.authors_id
WHERE a.articles_status = 1 AND ad.language_id = 2 AND au.authors_id = 1 ORDER BY ad.articles_name LIMIT 0, 20
[TEP STOP]