Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SELECT
- topic_id,
- topic_subject,
- user_name,
- topic_date,
- (select user_name from users, posts where post_by=user_id and post_topic= 'catid' ORDER BY post_date DESC LIMIT 1) AS 'Last Poster',
- (select post_date from users, posts where post_by=user_id and post_topic= 'catid' ORDER BY post_date DESC LIMIT 1) AS 'Last Time'
- FROM
- users, topics
- WHERE
- cat_id = 'catid' AND users.user_id = topics.topic_by
Advertisement
Add Comment
Please, Sign In to add comment