hello, is there a way i can reformat this query to make it faster?
SELECT topic_id, topic_title, topic_poster, topic_type, topic_status, username, topic_replies, topic_views, bb_topics.forum_id, forum_name, post_text FROM bb_topics, bb_users, bb_posts_text, bb_forums WHERE topic_status!='2' and topic_type!='2' and bb_topics.forum_id!='640' and bb_topics.topic_poster=bb_users.user_id and bb_topics.forum_id= bb_forums.forum_id and bb_posts_text.post_id=bb_topics.topic_first_post_id ORDER BY topic_type DESC, topic_id DESC LIMIT 20";