The following SQL query isn't working. I think the error is on the first line.
SELECT
SUBSTRING(tbl_news.comment, 1, 250) as tbl_news.comment,
tbl_news.id, tbl_news.date, tbl_news.subject, tbl_users.username
FROM
tbl_news
INNER JOIN
tbl_users ON tbl_news.creator = tbl_users.id
ORDER BY
date DESC