Quote Originally Posted by dclamp
You need to use a JOIN.

Code:
SELECT * FROM Users LEFT JOIN News WHERE Users.UsersID = News.NewsID LIMIT 3;
The comma between the table names is equivalent to "inner join".